mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
Fixed GameViewer
Disabled pause on null rsx instruction
This commit is contained in:
parent
95ce623da4
commit
2b7f984de8
4 changed files with 7 additions and 7 deletions
|
@ -112,7 +112,7 @@ void GameViewer::LoadGames()
|
|||
|
||||
m_games.clear();
|
||||
|
||||
for(const DirEntryInfo* info = dir.Read(); info; info = dir.Read())
|
||||
for(const DirEntryInfo* info : dir)
|
||||
{
|
||||
if(info->flags & DirEntry_TypeDir)
|
||||
{
|
||||
|
@ -182,7 +182,7 @@ void GameViewer::ShowData()
|
|||
|
||||
void GameViewer::Refresh()
|
||||
{
|
||||
Emu.GetVFS().Init(m_path);
|
||||
Emu.GetVFS().Init("/");
|
||||
LoadGames();
|
||||
LoadPSF();
|
||||
ShowData();
|
||||
|
@ -210,7 +210,7 @@ void GameViewer::DClick(wxListEvent& event)
|
|||
|
||||
Debug::AutoPause::getInstance().Reload();
|
||||
|
||||
Emu.GetVFS().Init(path);
|
||||
Emu.GetVFS().Init("/");
|
||||
std::string local_path;
|
||||
if (Emu.GetVFS().GetDevice(path, local_path) && !Emu.BootGame(local_path)) {
|
||||
LOG_ERROR(HLE, "Boot error: elf not found! [%s]", path.c_str());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue