diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | gui/LnxMain.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +March 12, 2010 Wei Mingzhi <whistler_wmz@users.sf.net> + + * gui/LnxMain.c: Fixed -cdfile switch (Thanks NeToU). + March 6, 2010 Wei Mingzhi <whistler_wmz@users.sf.net> * libpcsxcore/ppf.c: Speeded up the PPF loading routine when the PPF file diff --git a/gui/LnxMain.c b/gui/LnxMain.c index 739e77aa..8e04bc96 100644 --- a/gui/LnxMain.c +++ b/gui/LnxMain.c @@ -402,7 +402,7 @@ int main(int argc, char *argv[]) { chdir(plugin_default_dir); g_free(plugin_default_dir); - if (!UseGui) cdrfilename[0] = '\0'; + if (UseGui) cdrfilename[0] = '\0'; if (SysInit() == -1) return 1; |
