summaryrefslogtreecommitdiff
path: root/src/citra/citra.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-08-31 00:53:07 -0400
committerGravatar bunnei2014-08-31 00:53:07 -0400
commit76372feb1959c0f53d02c2278ef4a14b794a808d (patch)
tree2c25fd17b90fac39fa1b1de238b7ffc15a01abae /src/citra/citra.cpp
parentMerge pull request #82 from yuriks/addr-types (diff)
parentGPU: Improve frame synchronization, increases compatibility with both homebre... (diff)
downloadyuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.gz
yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.tar.xz
yuzu-76372feb1959c0f53d02c2278ef4a14b794a808d.zip
Merge pull request #84 from bunnei/fix-hw-synchronization
Fix GPU/HW synchronization
Diffstat (limited to 'src/citra/citra.cpp')
-rw-r--r--src/citra/citra.cpp4
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) {
31 return -1; 31 return -1;
32 } 32 }
33 33
34 Core::RunLoop(); 34 while(true) {
35 Core::RunLoop();
36 }
35 37
36 delete emu_window; 38 delete emu_window;
37 39