From c035466b10cc62451441136274fbe1d80b2bad21 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Tue, 19 Jul 2011 01:29:50 +0000 Subject: [PATCH] Fixed stupid bug giving bogus failure message to user in Alpine tab. --- src/gui/mainwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/mainwin.cpp b/src/gui/mainwin.cpp index 293b924..07f82d9 100644 --- a/src/gui/mainwin.cpp +++ b/src/gui/mainwin.cpp @@ -358,7 +358,7 @@ void MainWin::Configure(void) // If the "Alpine" ROM is changed, then let's load it... if (alpineBefore != alpineAfter) { - if (!JaguarLoadFile(vjs.alpineROMPath) || !AlpineLoadFile(vjs.alpineROMPath)) + if (!JaguarLoadFile(vjs.alpineROMPath) && !AlpineLoadFile(vjs.alpineROMPath)) { // Oh crap, we couldn't get the file! Alert the media! QMessageBox msg; -- 2.37.2