mirror of
https://github.com/libretro/stella2023.git
synced 2024-11-27 19:00:22 +00:00
fixed cut off Kid Vid songs
This commit is contained in:
parent
0739d521bf
commit
8aa67f8493
@ -258,7 +258,7 @@ void KidVid::setNextSong()
|
||||
myBeep = (ourSongPositions[mySongPointer] & 0x80) == 0;
|
||||
|
||||
const uInt8 temp = ourSongPositions[mySongPointer] & 0x7f;
|
||||
mySongLength = ourSongStart[temp + 1] - ourSongStart[temp] - 262 * ClickFrames;
|
||||
mySongLength = ourSongStart[temp + 1] - ourSongStart[temp];
|
||||
|
||||
// Play the WAV file
|
||||
const string& fileName = (temp < 10) ? "KVSHARED.WAV" : getFileName();
|
||||
|
Loading…
Reference in New Issue
Block a user