standalone: unbreak .exe mode
authornotaz <notasas@gmail.com>
Sun, 10 Nov 2024 15:54:28 +0000 (17:54 +0200)
committernotaz <notasas@gmail.com>
Sun, 10 Nov 2024 15:54:28 +0000 (17:54 +0200)
frontend/main.c

index abf97e6..c106720 100644 (file)
@@ -936,7 +936,7 @@ static int _OpenPlugins(void) {
 #endif
 
        ret = cdra_open();
-       if (ret < 0) { SysMessage(_("Error opening CD-ROM plugin!")); return -1; }
+       if (UsingIso() && ret < 0) { SysMessage(_("Error opening CD-ROM plugin!")); return -1; }
        ret = SPU_open();
        if (ret < 0) { SysMessage(_("Error opening SPU plugin!")); return -1; }
        SPU_registerCallback(SPUirq);