Skip to content

Commit

Permalink
fix: now skip delay completely if 0
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbsinteractive committed Sep 8, 2024
1 parent f2e570d commit eaa19b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion remc2/sub_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81164,7 +81164,8 @@ int16_t sub_90B27_VGA_pal_fadein_fadeout(TColor* newpalbufferx, uint8_t shadow_l
void fix_sub_9A0FC_wait_to_screen_beam(int32_t delay)//27B0fc
{
VGA_Blit(nullptr);
mydelay(delay);
if (delay > 0)
mydelay(delay);
}

//----- (00090B27) --------------------------------------------------------
Expand Down

0 comments on commit eaa19b2

Please sign in to comment.