diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-08-16 20:06:28 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-08-16 20:06:28 -0700 |
commit | 120310c083d538ec8770651ebd017b928524c10a (patch) | |
tree | a7b5154d91f1961e5d9cfc7b5a1ef2ef9d224cb0 /z80_to_x86.c | |
parent | 6393973204570eec25522b681749c843fb283ff0 (diff) |
Added save states to SMS emulation
Diffstat (limited to 'z80_to_x86.c')
-rw-r--r-- | z80_to_x86.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/z80_to_x86.c b/z80_to_x86.c index 75b0b33..4ab2700 100644 --- a/z80_to_x86.c +++ b/z80_to_x86.c @@ -3929,5 +3929,6 @@ void z80_deserialize(deserialize_buffer *buf, void *vcontext) context->int_pulse_start = load_int32(buf); context->int_pulse_end = load_int32(buf); context->nmi_start = load_int32(buf); + context->native_pc = NULL; } |