Fix compilation under MSVC2008 -nt-

This commit is contained in:
Phil Bennett 2013-01-21 22:43:59 +00:00
parent 9153c124dd
commit e8fec24fee
2 changed files with 2 additions and 2 deletions

View File

@ -496,7 +496,7 @@ offs_t r3000_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *op
MEMORY ACCESSORS
***************************************************************************/
inline UINT32 r3000_device::readop(off_t pc)
inline UINT32 r3000_device::readop(offs_t pc)
{
return m_direct->read_decrypted_dword(pc);
}

View File

@ -142,7 +142,7 @@ protected:
void (r3000_device::*m_write_dword)(offs_t byteaddress, UINT32 data);
};
UINT32 readop(off_t pc);
UINT32 readop(offs_t pc);
UINT8 readmem(offs_t offset);
UINT16 readmem_word(offs_t offset);
UINT32 readmem_dword(offs_t offset);