1
0
Fork 0

msg_init: shows were it was looking for the messages if it can't find them

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@104
This commit is contained in:
Peter Veenstra 2002-07-30 13:13:10 +00:00
parent 9f301d2d63
commit e1a9d3e616

View file

@ -42,7 +42,7 @@ static void LoadMessageFile(char * fname) {
FILE * mfile=fopen(fname,"rb");
/* This should never happen and since other modules depend on this use a normal printf */
if (!mfile) {
E_Exit("MSG:Can't load messages",fname);
E_Exit("MSG:Can't load messages: %s",fname);
}
char linein[LINE_IN_MAXLEN];
char name[LINE_IN_MAXLEN];