From f13f78b823c3d266fba2cfe85e4c11fe36c34d46 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Tue, 13 Sep 2022 17:43:06 -0400 Subject: [PATCH] Revert "Fix power meter going black when in djui pause (#168)" (#186) This reverts commit 4da8343253a803871c74671c498f9f49c41784f2. --- src/pc/lua/utils/smlua_misc_utils.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pc/lua/utils/smlua_misc_utils.c b/src/pc/lua/utils/smlua_misc_utils.c index eadb1f203..99cc91606 100644 --- a/src/pc/lua/utils/smlua_misc_utils.c +++ b/src/pc/lua/utils/smlua_misc_utils.c @@ -104,7 +104,6 @@ void hud_render_power_meter(s32 health, f32 x, f32 y, f32 width, f32 height) { { (u8*)texture_power_meter_seven_segments, 8, 32, 32 }, { (u8*)texture_power_meter_full, 8, 32, 32 }, }; - djui_hud_set_color(255, 255, 255, 255); djui_hud_render_texture(&sPowerMeterTexturesInfo[0], x, y, width / 64, height / 64); djui_hud_render_texture(&sPowerMeterTexturesInfo[1], x + width / 2, y, width / 64, height / 64); s32 numWedges = MIN(MAX(health >> 8, 0), 8);