Only allow one system running at a time

This commit is contained in:
Icer 2022-04-13 14:41:25 -07:00
parent e4ad2e13ce
commit 35e622c6a1

View file

@ -86,7 +86,10 @@ bool load_system(std::string rom_name)
{
return false;
}
// one system at a time....
_system_list.clear();
_system_list.push_back(system);
return true;
}