mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 17:35:46 +00: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:
parent
738b88293c
commit
eb36d3fc90
3 changed files with 20 additions and 21 deletions
|
@ -31,7 +31,9 @@ int __cdecl main(int argc, char **argv) {
|
|||
return -1;
|
||||
}
|
||||
|
||||
Core::RunLoop();
|
||||
while(true) {
|
||||
Core::RunLoop();
|
||||
}
|
||||
|
||||
delete emu_window;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue