overbound / SonicTimeTwisted

Source Code for a Sonic Fan Game Made in Game Maker Studio
https://overboundstudio.com/
GNU General Public License v3.0
60 stars 16 forks source link

Inconsistent music reset after getting a life #162

Closed AlexKhayrullin closed 2 years ago

AlexKhayrullin commented 3 years ago

After getting a life through an item box, the act music continues after the jingle is over. After getting a life by collecting 100 rings, the act music resets

nkrapivin commented 3 years ago

Can't reproduce on latest release/1.1 branch:


if (keyboard_check_pressed(vk_f6)) {
    // icon box
    player_get_lives(1);
}
else if (keyboard_check_pressed(vk_f7)) {
    // rings, press once again after ring theme stops.
    player_get_rings(99);
}

This code results in the same thing, the act music resumes from where it was paused.

nkrapivin commented 3 years ago

A fix is attempted in #198

nkrapivin commented 2 years ago

Can this be closed if the issue's fixed?