From c82ed3ff1028629bd846d146d5eb229cb2d5d76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Harabie=C5=84?= Date: Sat, 17 Aug 2024 19:47:01 +0200 Subject: [PATCH] Fix final level time left count-down in multi using wrong font --- docs/CHANGELOG.md | 1 + game_patch/hud/multi_hud.cpp | 1 + 2 files changed, 2 insertions(+) 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(); }, };