From e1a9d3e6162b90746eeef1bb818335ba255da193 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Tue, 30 Jul 2002 13:13:10 +0000 Subject: [PATCH] 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 --- src/misc/messages.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/messages.cpp b/src/misc/messages.cpp index b07a11a3..d7e05b2d 100644 --- a/src/misc/messages.cpp +++ b/src/misc/messages.cpp @@ -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];