[nostalgia/core/sdl] Add sleep 1 ms to main loop

This commit is contained in:
Gary Talent 2020-03-22 21:57:17 -05:00
parent 4dab05aef5
commit 887167add2

View File

@ -31,6 +31,7 @@ ox::Error run(Context *ctx) {
}
}
draw(ctx);
SDL_Delay(1);
}
return OxError(0);
}