diff --git a/apple/README.md b/apple/README.md index dc2f679583..42b9c48aa3 100644 --- a/apple/README.md +++ b/apple/README.md @@ -35,7 +35,7 @@ After you've configured the right things, you're ready for building. You'll want ### 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. @@ -46,13 +46,13 @@ your-repos-dir/libretro-super 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 ./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 ./libretro-build-ios.sh diff --git a/gfx/exynos_gfx.c b/gfx/exynos_gfx.c index f1b37455dc..79ee34b7a8 100644 --- a/gfx/exynos_gfx.c +++ b/gfx/exynos_gfx.c @@ -54,7 +54,7 @@ enum exynos_buffer_type { /* 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. * - * (1) the emulator framebuffer (backed by main buffer) * + * (1) the core framebuffer (backed by main buffer) * * (2) the menu buffer (backed by aux buffer) * * (3) the font rendering buffer (backed by aux buffer) */ enum exynos_image_type { @@ -145,7 +145,7 @@ struct exynos_data { /* framebuffer aspect ratio */ float aspect; - /* parameters for blitting emulator fb to screen */ + /* parameters for blitting core fb to screen */ unsigned blit_params[6]; /* bytes per pixel */ @@ -1034,7 +1034,7 @@ struct exynos_video { unsigned bytes_per_pixel; - /* current dimensions of the emulator fb */ + /* current dimensions of the core fb */ unsigned width; 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_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 (frame != NULL) {