Added hotfix for bug in "The Hurricanes" (happens on a real SNES)
Added scanline override for NHL '94
Added fix for entering folder names into BrowserDialog filename box
This commit is contained in:
byuu
2019-09-27 10:26:55 +09:00
parent 62729df2d1
commit 5a4b667eae
4 changed files with 21 additions and 5 deletions

View File

@@ -241,8 +241,12 @@ auto BrowserDialogWindow::run() -> BrowserDialog::Response {
return (void)window.setModal(false);
}
if(state.action == "openObject" && isObject(name)) {
response.selected.append({state.path, name});
return (void)window.setModal(false);
if(isMatch(name)) {
response.selected.append({state.path, name});
return (void)window.setModal(false);
} else if(isFolder(name)) {
return setPath({state.path, name});
}
}
if(state.action == "saveFile") return accept();
setPath(state.path, name);