Skip to content

Commit

Permalink
Fixed the lack of playing map music after loading a savegame in the g…
Browse files Browse the repository at this point in the history
…ame in the same map.
  • Loading branch information
FakelsHub committed Jan 19, 2022
1 parent 015185d commit 8e100ae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sfall/Modules/MiscPatches.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -980,6 +980,8 @@ static void PlayingMusicPatch() {
HookCall(0x482BA0, map_load_file_hook);

HookCall(0x4C5999, wmSetMapMusic_hook); // related fix

LoadGameHook::OnGameReset() += []() { cMusicArea = -1; };
}

static void __declspec(naked) op_display_msg_hook() {
Expand Down

2 comments on commit 8e100ae

@egornovivan
Copy link

@egornovivan egornovivan commented on 8e100ae Jan 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

А сделать так чтоб не прерывалась на загрузке сейва, возможно? Хотя оно и так в принципе сейчас работает хорошо при переходе по локациям. Странно что я не заметил этот баг при тестировании радиации.

@FakelsHub
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Странно что я не заметил этот баг при тестировании радиации.

Я сам прифигел, точно помню, что загружался в той-же локации для проверки и музыка была.

А сделать так чтоб не прерывалась на загрузке сейва, возможно?

Можно. Но это уже лишнее.

Please sign in to comment.