Minor style change

This commit is contained in:
Nekotekina 2015-07-19 14:36:32 +03:00
parent 8175630619
commit 2f7fe35f5c
42 changed files with 329 additions and 381 deletions

View file

@ -59,12 +59,12 @@ void CPUThreadManager::Exec()
{
for (auto& t : Emu.GetIdManager().get_all<PPUThread>())
{
t->Exec();
t->exec();
}
for (auto& t : Emu.GetIdManager().get_all<ARMv7Thread>())
{
t->Exec();
t->exec();
}
}