Avoid usage of term 'emulator'

This commit is contained in:
twinaphex 2014-10-08 04:56:09 +02:00
parent 7391b7573b
commit f9da3f37c4
2 changed files with 7 additions and 7 deletions

View File

@ -35,7 +35,7 @@ After you've configured the right things, you're ready for building. You'll want
### Emulator Cores ### Emulator Cores
Before building the app, you'll need to build the emulator cores. Before building the app, you'll need to build the libretro cores.
You'll need to clone down the [libretro/libretro-super](https://github.com/libretro/libretro-super) repo into the same directory where you cloned this repo. You'll need to clone down the [libretro/libretro-super](https://github.com/libretro/libretro-super) repo into the same directory where you cloned this repo.
@ -46,13 +46,13 @@ your-repos-dir/libretro-super
your-repos-dir/RetroArch your-repos-dir/RetroArch
``` ```
Run the libretro-super fetch script to first get the emulator core repos. Run the libretro-super fetch script to first get the libretro core repos.
```sh ```sh
./libretro-fetch.sh ./libretro-fetch.sh
``` ```
Run the libretro-super iOS build script to build the emulator cores. Run the libretro-super iOS build script to build the libretro cores.
```sh ```sh
./libretro-build-ios.sh ./libretro-build-ios.sh

View File

@ -54,7 +54,7 @@ enum exynos_buffer_type {
/* We have to handle three types of 'data' from the frontend, each abstracted by a * /* We have to handle three types of 'data' from the frontend, each abstracted by a *
* G2D image object. The image objects are then backed by some storage buffer. * * G2D image object. The image objects are then backed by some storage buffer. *
* (1) the emulator framebuffer (backed by main buffer) * * (1) the core framebuffer (backed by main buffer) *
* (2) the menu buffer (backed by aux buffer) * * (2) the menu buffer (backed by aux buffer) *
* (3) the font rendering buffer (backed by aux buffer) */ * (3) the font rendering buffer (backed by aux buffer) */
enum exynos_image_type { enum exynos_image_type {
@ -145,7 +145,7 @@ struct exynos_data {
/* framebuffer aspect ratio */ /* framebuffer aspect ratio */
float aspect; float aspect;
/* parameters for blitting emulator fb to screen */ /* parameters for blitting core fb to screen */
unsigned blit_params[6]; unsigned blit_params[6];
/* bytes per pixel */ /* bytes per pixel */
@ -1034,7 +1034,7 @@ struct exynos_video {
unsigned bytes_per_pixel; unsigned bytes_per_pixel;
/* current dimensions of the emulator fb */ /* current dimensions of the core fb */
unsigned width; unsigned width;
unsigned height; unsigned height;
@ -1261,7 +1261,7 @@ static bool exynos_gfx_frame(void *data, const void *frame, unsigned width,
struct exynos_video *vid = data; struct exynos_video *vid = data;
struct exynos_page *page = NULL; struct exynos_page *page = NULL;
/* Check if neither menu nor emulator framebuffer is to be displayed. */ /* Check if neither menu nor core framebuffer is to be displayed. */
if (!vid->menu_active && frame == NULL) return true; if (!vid->menu_active && frame == NULL) return true;
if (frame != NULL) { if (frame != NULL) {