all repos — mgba @ b75b591b22226371ebc97fa56e3d4c8ddbdbdea5

mGBA Game Boy Advance Emulator

Libretro: Start declaration with `static` to suppress compiler warning
Douglas Christman DouglasChristman@gmail.com
Sat, 24 Mar 2018 19:10:47 +0800
commit

b75b591b22226371ebc97fa56e3d4c8ddbdbdea5

parent

ffbf509f5a75bec09969b454ec4eb363c3557f10

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/platform/libretro/libretro.csrc/platform/libretro/libretro.c

@@ -320,7 +320,7 @@ core->desiredVideoDimensions(core, &width, &height);

videoCallback(outputBuffer, width, height, BYTES_PER_PIXEL * 256); } -void static _setupMaps(struct mCore* core) { +static void _setupMaps(struct mCore* core) { #ifdef M_CORE_GBA if (core->platform(core) == PLATFORM_GBA) { struct GBA* gba = core->board;