Libretro: Start declaration with `static` to suppress compiler warning

This commit is contained in:
Douglas Christman 2018-03-24 19:10:47 +08:00 committed by endrift
parent ffbf509f5a
commit b75b591b22
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ void retro_run(void) {
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;