void function returning a value
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1385
This commit is contained in:
parent
def42bde5f
commit
166b944fc9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ void IO_WriteW(Bitu port,Bit16u val) {
|
|||
else LOG(LOG_IO,LOG_WARN)("WriteW:Out or range write %X to port %4X",val,port);
|
||||
}
|
||||
void IO_WriteD(Bitu port,Bit32u val) {
|
||||
if (port<(IO_MAX & ~3)) return io.write_d[port](port,val);
|
||||
if (port<(IO_MAX & ~3)) io.write_d[port](port,val);
|
||||
else LOG(LOG_IO,LOG_WARN)("WriteD:Out or range write %X to port %4X",val,port);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue