Skip to content

Commit 780dd03

Browse files
Kyota-exeAndy-Python-Programmer
authored andcommitted
Fix doomgeneric patch DG_SleepMs
1 parent 5041d26 commit 780dd03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patches/doomgeneric/doomgeneric.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ index 0000000..1172db3
630630
+ handle_keyboard_input();
631631
+}
632632
+
633-
+void DG_SleepMs(uint32_t ms) { usleep(ms * 1000000); }
633+
+void DG_SleepMs(uint32_t ms) { usleep(ms * 1000); }
634634
+
635635
+uint32_t DG_GetTicksMs() {
636636
+ struct timeval tp;

0 commit comments

Comments
 (0)