Permalink
Browse files

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

  • Loading branch information...
dobyrch authored and endrift committed Mar 24, 2018
1 parent ffbf509 commit b75b591b22226371ebc97fa56e3d4c8ddbdbdea5
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/platform/libretro/libretro.c
@@ -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;

0 comments on commit b75b591

Please sign in to comment.