From 3598b772bc80b2efb6396c65996462b38eedc593 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 19 Aug 2010 07:26:14 +0000 Subject: Replace "const address_space" with "address_space" throughout the system. The purpose of making it const before was to discourage direct tampering, but private/protected does a better job of that now anyhow, and it is annoying now. s/const[ \t]+address_space\b/address_space/g; Is basically what I did. --- src/emu/cpu/i86/i86mem.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/emu/cpu/i86/i86mem.h') diff --git a/src/emu/cpu/i86/i86mem.h b/src/emu/cpu/i86/i86mem.h index 9bccd2a2342..a49797c56a0 100644 --- a/src/emu/cpu/i86/i86mem.h +++ b/src/emu/cpu/i86/i86mem.h @@ -3,8 +3,8 @@ struct _memory_interface { offs_t fetch_xor; - UINT8 (*rbyte)(const address_space *, offs_t); - UINT16 (*rword)(const address_space *, offs_t); - void (*wbyte)(const address_space *, offs_t, UINT8); - void (*wword)(const address_space *, offs_t, UINT16); + UINT8 (*rbyte)(address_space *, offs_t); + UINT16 (*rword)(address_space *, offs_t); + void (*wbyte)(address_space *, offs_t, UINT8); + void (*wword)(address_space *, offs_t, UINT16); }; -- cgit v1.2.3-70-g09d2