2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Fix correct espace

This commit is contained in:
Dante38490 2015-01-05 04:45:09 +01:00
parent 35a085d567
commit e674aa31af

View file

@ -45,8 +45,8 @@ FileType IdentifyFile(const std::string &filename) {
return FileType::CCI;
} else if (extension == ".bin") {
return FileType::BIN;
} else if (extension == ".3ds") {
return FileType::CCI;
} else if (extension == ".3ds") {
return FileType::CCI;
} else if (extension == ".3dsx") {
return FileType::THREEDSX;
}