mirror of
https://github.com/holub/mame
synced 2025-05-24 14:56:21 +03:00
Fixed stupid copy&paste mistake in s2636.c
This is what you get when you forget to press save before the commit :(
This commit is contained in:
parent
72d156a858
commit
fe3420b40f
@ -317,7 +317,7 @@ WRITE8_DEVICE_HANDLER( s2636_work_ram_w )
|
||||
{
|
||||
s2636_state *s2636 = get_safe_token(device);
|
||||
|
||||
assert(offset < 8);
|
||||
assert(offset < s2636->work_ram_size);
|
||||
|
||||
s2636->work_ram[offset] = data;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user