Fix compilation using the right variable name.
This commit is contained in:
parent
1ff0161d4e
commit
80625f4229
|
@ -482,7 +482,7 @@ u8 BackupDevice::data_command(u8 val, int cpu)
|
|||
else if(com == BM_CMD_READSTATUS)
|
||||
{
|
||||
//handle request to read status
|
||||
LOG("Backup Memory Read Status: %02X\n", mc->write_enable << 1);
|
||||
LOG("Backup Memory Read Status: %02X\n", write_enable << 1);
|
||||
return (write_enable << 1) | (3<<2);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue