comparison z80_to_x86.c @ 1448:9327c1dc3791

Ensure extra_pc is NULL when resuming a save state
author Michael Pavone <pavone@retrodev.com>
date Tue, 29 Aug 2017 00:30:20 -0700
parents 7d4483944d4d
children 2e6320d261ff
comparison
equal deleted inserted replaced
1447:a094815b1168 1448:9327c1dc3791
3929 context->int_cycle = load_int32(buf); 3929 context->int_cycle = load_int32(buf);
3930 context->int_enable_cycle = load_int32(buf); 3930 context->int_enable_cycle = load_int32(buf);
3931 context->int_pulse_start = load_int32(buf); 3931 context->int_pulse_start = load_int32(buf);
3932 context->int_pulse_end = load_int32(buf); 3932 context->int_pulse_end = load_int32(buf);
3933 context->nmi_start = load_int32(buf); 3933 context->nmi_start = load_int32(buf);
3934 context->native_pc = NULL; 3934 context->native_pc = context->extra_pc = NULL;
3935 } 3935 }
3936 3936