fixed ambiguos call
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1006
This commit is contained in:
parent
75caa32ce0
commit
60292fb70f
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ static Bit8u IO_ReadDefault(Bit32u port) {
|
|||
}
|
||||
|
||||
void IO_WriteDefault(Bit32u port,Bit8u val) {
|
||||
LOG(LOG_IO,LOG_ERROR)("Writing %02X to undefined port %04X",val,port);
|
||||
LOG(LOG_IO,LOG_ERROR)("Writing %02X to undefined port %04X",static_cast<Bit32u>(val),port);
|
||||
IO_RegisterWriteHandler(port,&IO_WriteBlocked,"Blocked Write");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue