1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-29 23:46:31 -05:00

Core: Refactor core to use only one function for execution.

Core: Cleaned up comment to be more readable.

Citra: Changed loop to be more readable.
This commit is contained in:
bunnei
2014-08-29 23:24:32 -04:00
parent 738b88293c
commit eb36d3fc90
3 changed files with 20 additions and 21 deletions

View File

@@ -31,7 +31,9 @@ int __cdecl main(int argc, char **argv) {
return -1;
}
Core::RunLoop();
while(true) {
Core::RunLoop();
}
delete emu_window;