aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
authornotaz2012-12-11 01:46:30 +0200
committernotaz2012-12-11 02:22:31 +0200
commit8f00f96ca84ba1d8ba30d4850c0b1d143efa5989 (patch)
tree51b62f92df4086ad0b5637cd0958277bb0d1ddb5 /libpcsxcore
parent5ca2ec64779fee99d0fc347330a83ae5e982d282 (diff)
downloadpcsx_rearmed-8f00f96ca84ba1d8ba30d4850c0b1d143efa5989.tar.gz
pcsx_rearmed-8f00f96ca84ba1d8ba30d4850c0b1d143efa5989.tar.bz2
pcsx_rearmed-8f00f96ca84ba1d8ba30d4850c0b1d143efa5989.zip
misc: make error message remind about common mistake
Diffstat (limited to 'libpcsxcore')
-rw-r--r--libpcsxcore/misc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c
index ad2e5d5..bb55257 100644
--- a/libpcsxcore/misc.c
+++ b/libpcsxcore/misc.c
@@ -506,7 +506,8 @@ int Load(const char *ExePath) {
retval = -1;
break;
case INVALID_EXE:
- SysPrintf(_("This file does not appear to be a valid PSX file.\n"));
+ SysPrintf(_("This file does not appear to be a valid PSX EXE file.\n"));
+ SysPrintf(_("(did you forget -cdfile ?)\n"));
retval = -1;
break;
}