fix condition

This commit is contained in:
Random06457 2022-05-12 01:44:39 +09:00
commit 573e83ffc2

View file

@ -67,13 +67,13 @@ void OTRGame::init(){
mat.shader = shader;
}
if(fs::exists("soh.exe") || fs::exists("soh.elf") && !fs::exists("oot.otr")) {
if((fs::exists("soh.exe") || fs::exists("soh.elf")) && !fs::exists("oot.otr")) {
hide_second_btn = true;
sohFolder = ".";
}
}
void ExtractRom()
void ExtractRom()
{
WriteResult result;