GME low volume fix

This commit is contained in:
Steel Titanium 2018-05-24 16:24:09 -04:00
parent 8e5ac64d7c
commit 0b6d6c3363
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ static void mix_gme(void *udata, Uint8 *stream, int len)
// apply volume to stream
for (i = 0, p = (short *)stream; i < len/2; i++, p++)
*p = ((INT32)*p) * music_volume / 31;
*p = ((INT32)*p) * music_volume*2/31;
}
#endif