Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SirMangler committed Apr 21, 2024
1 parent 5fed52e commit f5e09ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xenia-canary-uwp/XeniaUWP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ void RecurseFolderForGames(std::string path) {
filename = file.path().stem().string();
}

s_games.push_back({path, filename});
s_games.push_back({file.path().string(), filename});
break;
}
case xe::Emulator::FileSignatureType::CON:
case xe::Emulator::FileSignatureType::PIRS:
case xe::Emulator::FileSignatureType::ZAR: {
std::string filename = file.path().stem().string();
s_games.push_back({path, filename});
s_games.push_back({file.path().string(), filename});
break;
}
case xe::Emulator::FileSignatureType::LIVE: {
Expand All @@ -145,7 +145,7 @@ void RecurseFolderForGames(std::string path) {
if (c == 0) break;
}

s_games.push_back({path, data});
s_games.push_back({file.path().string(), data});

in.close();
}
Expand Down

0 comments on commit f5e09ce

Please sign in to comment.