From 88c739b46861ef15ef5917053fafb4d6884bd606 Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Thu, 23 Dec 2021 10:46:33 +1000 Subject: [PATCH] Remove yield --- doomgeneric/doomgeneric_quinn.c | 1 - 1 file changed, 1 deletion(-) diff --git a/doomgeneric/doomgeneric_quinn.c b/doomgeneric/doomgeneric_quinn.c index 56f21c3..881c1f1 100644 --- a/doomgeneric/doomgeneric_quinn.c +++ b/doomgeneric/doomgeneric_quinn.c @@ -154,7 +154,6 @@ void DG_SleepMs(uint32_t ms) { __asm__ volatile ("int $0x30" : "=a" (ticks) : "0" (46)); while (ticks + (ms * 10) > now) { - quinn_yield(); __asm__ volatile ("int $0x30" : "=a" (now) : "0" (46)); } }