GUI: Disable filtering again, still broken

This commit is contained in:
Jeffrey Pfau 2016-01-03 16:56:44 -08:00
parent f59fe8248f
commit 0bb45dad0d
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ void GBAGUIRun(struct GBAGUIRunner* runner, const char* path) {
void GBAGUIRunloop(struct GBAGUIRunner* runner) {
while (true) {
char path[PATH_MAX];
if (!GUISelectFile(&runner->params, path, sizeof(path), GBAIsROM)) {
if (!GUISelectFile(&runner->params, path, sizeof(path), 0)) {
break;
}
GBAGUIRun(runner, path);