mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-23 22:41:56 +00:00
Fixed warning C4245: 'initializing': conversion from 'int' to 'SDL_AudioDeviceID', signed/unsigned mismatch
This commit is contained in:
parent
cb811ba463
commit
9989f92eee
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ static void SDLCALL audio_testCallback(void *userdata, Uint8 *stream, int len)
|
|||
}
|
||||
#endif
|
||||
|
||||
static SDL_AudioDeviceID g_audio_id = -1;
|
||||
static SDL_AudioDeviceID g_audio_id = 0;
|
||||
|
||||
/* Test case functions */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue