Disable execution timeouts for now.
This is a quick hack to disable the execution timeout, while still making the application able to exit if the window is requested to close. Execution limits may be reintroduced with more debugging features, but not enabled by default.
This commit is contained in:
parent
dc65cc0f1d
commit
fb030288f9
|
@ -466,7 +466,7 @@ run(Uxn *u)
|
|||
int
|
||||
uxn_interrupt(void)
|
||||
{
|
||||
return ((Sint64)(exec_deadline - SDL_GetPerformanceCounter())) > 0;
|
||||
return !SDL_QuitRequested();
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in New Issue