mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-10 22:47:56 -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:
@ -31,7 +31,9 @@ int __cdecl main(int argc, char **argv) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
Core::RunLoop();
|
||||
while(true) {
|
||||
Core::RunLoop();
|
||||
}
|
||||
|
||||
delete emu_window;
|
||||
|
||||
|
Reference in New Issue
Block a user