diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-03-12 02:03:43 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-03-12 02:03:43 +0000 |
| commit | dd10a97deaada3e4605362ca4306a439b6ab0ebe (patch) | |
| tree | 366d7b183be2a857df531f97e0e8cb9be4765b40 | |
| parent | 01c19d7afb0b8f9724a41301b070585c6360113e (diff) | |
| download | pcsxr-dd10a97deaada3e4605362ca4306a439b6ab0ebe.tar.gz | |
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@42329 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -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; |
