update HUD positions in updateOnWide instead of when drawing

this change makes it so positions will properly update when resizing the window, instead of only updating on room load
This commit is contained in:
CraftyBoss
2026-04-04 23:42:00 -07:00
parent 6e6f55f1e4
commit 6ca9017e12
4 changed files with 17 additions and 31 deletions
+4
View File
@@ -1868,12 +1868,16 @@ f32 dMeter2Info_getWide2DPosX(f32* param_0) {
}
void dMeter2Info_onWide2D() {
#if !TARGET_PC
g_ringHIO.updateOnWide();
#endif
g_drawHIO.updateOnWide();
}
void dMeter2Info_offWide2D() {
#if !TARGET_PC
g_ringHIO.updateOffWide();
#endif
g_drawHIO.updateOffWide();
}
#endif