diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 7053c69a..503ae213 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -35,6 +35,7 @@ Version 1.8.1 (not released yet) - Fix ambient sound panning when EAX is disabled - Fix quiet 3D sounds being often skipped when EAX is enabled, e.g. first miner in L1S1 (DF bug) - Allow saving in training levels +- Fix final level time left count-down in multi using wrong font (DF bug) Version 1.8.0 (released 2022-09-17) ----------------------------------- diff --git a/game_patch/hud/multi_hud.cpp b/game_patch/hud/multi_hud.cpp index 91da046c..27fc9e83 100644 --- a/game_patch/hud/multi_hud.cpp +++ b/game_patch/hud/multi_hud.cpp @@ -179,6 +179,7 @@ FunHook multi_hud_init_hook{ if (time_left_font >= 0) { write_mem(0x00477157 + 1, time_left_font); } + multi_hud_init_hook.call_target(); }, };