diff options
author | 2011-05-30 03:59:42 +0000 | |
---|---|---|
committer | 2011-05-30 03:59:42 +0000 | |
commit | 277314847c5d91d1fe07cc667630f86a7b1b8941 (patch) | |
tree | 3237e39604aafc7ecefe3b601d7b1ed38706f6ed /src/emu/cpu/minx | |
parent | da488dc93c33bc42697c821ffee209980a4b51e4 (diff) |
GCC 4.6 "Variable assigned but not used" fixes, part 6 (no whatsnew)
Diffstat (limited to 'src/emu/cpu/minx')
-rw-r--r-- | src/emu/cpu/minx/minx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/minx/minx.c b/src/emu/cpu/minx/minx.c index fc4597957ef..d0bc3321b2b 100644 --- a/src/emu/cpu/minx/minx.c +++ b/src/emu/cpu/minx/minx.c @@ -169,14 +169,14 @@ INLINE UINT16 rdop16( minx_state *minx ) static CPU_EXECUTE( minx ) { - UINT32 oldpc; +// UINT32 oldpc; UINT8 op; minx_state *minx = get_safe_token(device); do { debugger_instruction_hook(device, GET_MINX_PC); - oldpc = GET_MINX_PC; +// oldpc = GET_MINX_PC; if ( minx->interrupt_pending ) { |