1
0
Fork 0

Try to solve the Bitu formatting warning on all supported platforms (both 32 and 64 bit). Did a few places. Still a lot to go. Changed default display of Bitu to be unsigned instead of signed.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4291
This commit is contained in:
Peter Veenstra 2019-11-18 21:08:57 +00:00
parent e2e974336a
commit 01fe58047e
5 changed files with 50 additions and 34 deletions

View file

@ -527,7 +527,7 @@ Bitu CALLBACK_SetupExtra(Bitu callback, Bitu type, PhysPt physAddress, bool use_
phys_writeb(physAddress+0x1B,(Bit8u)0xC3); //A RETN Instruction
return (use_cb?32:27);
default:
E_Exit("CALLBACK:Setup:Illegal type %d",type);
E_Exit("CALLBACK:Setup:Illegal type " sBitud,type);
}
return 0;
}