diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-31 06:53:07 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-31 06:53:07 +0200 |
commit | 76372feb1959c0f53d02c2278ef4a14b794a808d (patch) | |
tree | 2c25fd17b90fac39fa1b1de238b7ffc15a01abae /src/citra | |
parent | Merge pull request #82 from yuriks/addr-types (diff) | |
parent | GPU: Improve frame synchronization, increases compatibility with both homebrew and retail applications. (diff) | |
download | yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.gz yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.bz2 yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.lz yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.xz yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.zst yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.zip |
Diffstat (limited to 'src/citra')
-rw-r--r-- | src/citra/citra.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp index 9399ff296..7dc721dc3 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp @@ -31,7 +31,9 @@ int __cdecl main(int argc, char **argv) { return -1; } - Core::RunLoop(); + while(true) { + Core::RunLoop(); + } delete emu_window; |