GB IO: Fix I/O category name in logs

This commit is contained in:
Jeffrey Pfau 2016-02-03 20:00:50 -08:00
parent a9ba3a2094
commit cfd031f140
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ void GBIOWrite(struct GB* gb, unsigned address, uint8_t value) {
GBUpdateIRQs(gb);
return;
default:
mLOG(GB_MBC, STUB, "Writing to unknown register FF%02X:%02X", address, value);
mLOG(GB_IO, STUB, "Writing to unknown register FF%02X:%02X", address, value);
if (address >= GB_SIZE_IO) {
return;
}
@ -220,7 +220,7 @@ uint8_t GBIORead(struct GB* gb, unsigned address) {
// Handled transparently by the registers
break;
default:
mLOG(GB_MBC, STUB, "Reading from unknown register FF%02X", address);
mLOG(GB_IO, STUB, "Reading from unknown register FF%02X", address);
if (address >= GB_SIZE_IO) {
return 0;
}