Fix compilation using the right variable name.

This commit is contained in:
riccardom 2010-05-08 16:27:54 +00:00
parent 1ff0161d4e
commit 80625f4229
1 changed files with 1 additions and 1 deletions

View File

@ -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