From 53bd61bf03d2ce4a179c40e3cb47498c4d5cd3e4 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sun, 17 Nov 2002 13:11:28 +0000 Subject: [PATCH] changed illegal interrupt reporiting to use hex instead of dec Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@528 --- src/cpu/callback.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/callback.cpp b/src/cpu/callback.cpp index 7f52ce78..7d5efa55 100644 --- a/src/cpu/callback.cpp +++ b/src/cpu/callback.cpp @@ -67,7 +67,7 @@ void CALLBACK_Idle(void) { } static Bitu default_handler(void) { - LOG_WARN("Illegal Unhandled Interrupt Called %d",lastint); + LOG_WARN("Illegal Unhandled Interrupt Called %X",lastint); return CBRET_NONE; };