diff options
| author | 2011-11-06 20:44:27 +0000 | |
|---|---|---|
| committer | 2011-11-06 20:44:27 +0000 | |
| commit | b537f5804d56fc0ec70c90b7278d1d2e37e233b5 (patch) | |
| tree | 9e3ec9acfda8207a6f6ef47c225435b58750e205 /src | |
| parent | 3f96d412e2b6cc6dbf3c6123acd21739552010ae (diff) | |
neogeo.c: fixed kof98 on non-Windows builds [Alex Jackson]
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/machine/neocrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/neocrypt.c b/src/mame/machine/neocrypt.c index 49fb9f4a55e..9659bb6c582 100644 --- a/src/mame/machine/neocrypt.c +++ b/src/mame/machine/neocrypt.c @@ -994,7 +994,7 @@ void kof98_decrypt_68k(running_machine &machine) memcpy( &src[i+0x000100], &dst[i+0x000100], 2 ); memcpy( &src[i+0x000102], &dst[i+0x100100], 2 ); } - memcpy( &src[0x100000], &src[0x200000], 0x400000 ); + memmove( &src[0x100000], &src[0x200000], 0x400000 ); auto_free(machine, dst); } |
