This commit is contained in:
CocoSimone
2022-12-22 23:17:46 +01:00
parent 4adb7a46f8
commit 815075986b
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ GameList::GameList(const std::string& path) {
for(const auto& p : fs::directory_iterator{path}) {
const auto filename = p.path().string();
if(p.path().extension() == ".backend" || p.path().extension() == ".z64" || p.path().extension() == ".v64" ||
if(p.path().extension() == ".n64" || p.path().extension() == ".z64" || p.path().extension() == ".v64" ||
p.path().extension() == ".N64" || p.path().extension() == ".Z64" || p.path().extension() == ".V64") {
std::ifstream file(filename, std::ios::binary);
file.unsetf(std::ios::skipws);