refactor: the long goodbye

long is 32 bits on windows, while it is 64 bits on other architectures.
This makes the type suboptimal for a codebase meant to be
cross-platform. Replace it with more appropriate integer types.
This commit is contained in:
dundargoc
2023-09-29 14:58:48 +02:00
committed by dundargoc
parent c513cbf361
commit acc646ad8f
57 changed files with 362 additions and 367 deletions

View File

@@ -3719,7 +3719,7 @@ void msg_check_for_delay(bool check_msg_scroll)
&& emsg_silent == 0
&& !in_assert_fails) {
ui_flush();
os_delay(1006L, true);
os_delay(1006, true);
emsg_on_display = false;
if (check_msg_scroll) {
msg_scroll = false;