SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 10df4d7a13c3458b696b1632851be26b2dc1dbbe parent 45bd5342e7ff2111f7effcfda8004ffee398adfa Author: Lior Halphon <LIJI32@gmail.com> Date: Sun, 24 Jul 2022 14:54:14 +0300 Missing static Diffstat:
| M | SDL/audio/sdl.c | 2 | +- |
| M | SDL/audio/xaudio2.c | 2 | +- |
| M | SDL/audio/xaudio2_7.c | 2 | +- |
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/SDL/audio/sdl.c b/SDL/audio/sdl.c @@ -102,7 +102,7 @@ static bool _audio_init(void) return true; } -void _audio_deinit(void) +static void _audio_deinit(void) { _audio_set_paused(true); SDL_CloseAudioDevice(device_id); diff --git a/SDL/audio/xaudio2.c b/SDL/audio/xaudio2.c @@ -151,7 +151,7 @@ static bool _audio_init(void) return true; } -void _audio_deinit(void) +static void _audio_deinit(void) { _audio_set_paused(true); } diff --git a/SDL/audio/xaudio2_7.c b/SDL/audio/xaudio2_7.c @@ -171,7 +171,7 @@ static bool _audio_init(void) return true; } -void _audio_deinit(void) +static void _audio_deinit(void) { _audio_set_paused(true); }
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.