diff options
author | aliaspider | 2015-10-05 23:41:03 +0100 |
---|---|---|
committer | aliaspider | 2015-10-05 23:41:03 +0100 |
commit | de5af8fb9af829578855593dbd01ebeb1efc14cb (patch) | |
tree | 9839080a8a9d2e756c9114d0804cbebd12cf42f0 /source | |
parent | 64ffe869caba187b8c7205ad6182f5c603008128 (diff) | |
download | snesemu-de5af8fb9af829578855593dbd01ebeb1efc14cb.tar.gz snesemu-de5af8fb9af829578855593dbd01ebeb1efc14cb.tar.bz2 snesemu-de5af8fb9af829578855593dbd01ebeb1efc14cb.zip |
fix debug build.
Diffstat (limited to 'source')
-rw-r--r-- | source/cpuops.c | 2 | ||||
-rw-r--r-- | source/gfx.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/cpuops.c b/source/cpuops.c index 57c3d6c..0a8f782 100644 --- a/source/cpuops.c +++ b/source/cpuops.c @@ -3404,7 +3404,7 @@ static inline void CPUShutdown() } } #else -inline void CPUShutdown() +static inline void CPUShutdown() { if (Settings.Shutdown && CPU.PC == CPU.WaitAddress) { diff --git a/source/gfx.c b/source/gfx.c index 2cd7584..ba077e4 100644 --- a/source/gfx.c +++ b/source/gfx.c @@ -730,7 +730,7 @@ void S9xSetInfoString(const char* string) GFX.InfoStringTimeout = 120; } -inline void SelectTileRenderer(bool normal) +static inline void SelectTileRenderer(bool normal) { if (normal) { |