Merge pull request #49 from archshift/redundantloop

Removed redundant loop in EmuThread::run()
This commit is contained in:
bunnei 2014-08-17 20:35:18 -04:00
commit 3cd5ede355

View file

@ -32,17 +32,14 @@ void EmuThread::run()
{ {
while (true) while (true)
{ {
for (int tight_loop = 0; tight_loop < 10000; ++tight_loop) if (cpu_running || exec_cpu_step)
{ {
if (cpu_running || exec_cpu_step) if (exec_cpu_step)
{ exec_cpu_step = false;
if (exec_cpu_step)
exec_cpu_step = false;
Core::SingleStep(); Core::SingleStep();
if (!cpu_running) if (!cpu_running)
emit CPUStepped(); emit CPUStepped();
}
} }
} }