diff options
| author | 2009-09-06 13:40:00 +0000 | |
|---|---|---|
| committer | 2009-09-06 13:40:00 +0000 | |
| commit | 09dc72412faf6add7236586f6fb679dcd777ce27 (patch) | |
| tree | 3580a3e13341f0c03cce33035ec2be67480226eb /src | |
| parent | dfbdaa0357f61a460ccddd11fc39e8a6997ee1bb (diff) | |
Fixed 64-bit MSVC compile.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/debug/debugcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c index 1e2996a9ee8..75814dde444 100644 --- a/src/emu/debug/debugcmd.c +++ b/src/emu/debug/debugcmd.c @@ -1916,7 +1916,7 @@ static void execute_cheatnext(running_machine *machine, int ref, int params, con UINT64 cheatindex; UINT32 active_cheat = 0; UINT8 condition; - UINT64 comp_value; + UINT64 comp_value = 0; enum { |
