mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-26 15:53:01 +00:00
(Screen) Use fast timer if vector short is set
This commit is contained in:
parent
3457f665a7
commit
268ec45780
1 changed files with 3 additions and 2 deletions
|
@ -439,6 +439,7 @@ run(Uxn *u)
|
|||
{
|
||||
Uint64 now = SDL_GetPerformanceCounter(), frame_end, frame_interval = SDL_GetPerformanceFrequency() / 60;
|
||||
for(;;) {
|
||||
Uint16 screen_vector = PEEK16(&u->dev[0x20]);
|
||||
/* .System/halt */
|
||||
if(u->dev[0x0f])
|
||||
return error("Run", "Ended.");
|
||||
|
@ -446,11 +447,11 @@ run(Uxn *u)
|
|||
exec_deadline = now + deadline_interval;
|
||||
if(!handle_events(u))
|
||||
return 0;
|
||||
uxn_eval(u, PEEK16(&u->dev[0x20]));
|
||||
uxn_eval(u, screen_vector);
|
||||
if(uxn_screen.fg.changed || uxn_screen.bg.changed)
|
||||
redraw();
|
||||
now = SDL_GetPerformanceCounter();
|
||||
if(u->dev[0x20]) {
|
||||
if(screen_vector) {
|
||||
if(!BENCH && ((Sint64)(frame_end - now)) > 0) {
|
||||
SDL_Delay((frame_end - now) / ms_interval);
|
||||
now = frame_end;
|
||||
|
|
Loading…
Reference in a new issue