fix virtua racing regression in r5600
This commit is contained in:
parent
1e5ff72519
commit
3a1933b1a6
|
@ -464,17 +464,18 @@ void zap(void)
|
|||
Y(zbank_memory_map);
|
||||
|
||||
Z(&sram); // NB: sram.sram is not allocated
|
||||
|
||||
|
||||
Z(&svp);
|
||||
|
||||
Z(&bitmap);
|
||||
Z(&snd);
|
||||
|
||||
Z(&mcycles_vdp);
|
||||
Z(&SVP_cycles);
|
||||
|
||||
Z(&system_hw);
|
||||
Z(&system_bios);
|
||||
Z(&system_clock);
|
||||
|
||||
|
||||
Y(reg);
|
||||
Y(sat);
|
||||
Y(vram);
|
||||
|
@ -591,6 +592,5 @@ void zap(void)
|
|||
Z(&eq);
|
||||
Z(&llp);
|
||||
Z(&rrp);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ uint32 mcycles_vdp;
|
|||
uint8 system_hw;
|
||||
uint8 system_bios;
|
||||
uint32 system_clock;
|
||||
int16 SVP_cycles = 800;
|
||||
const int16 SVP_cycles = 800;
|
||||
|
||||
uint8 pause_b;
|
||||
EQSTATE eq;
|
||||
|
|
|
@ -98,7 +98,7 @@ typedef struct
|
|||
extern t_bitmap bitmap;
|
||||
extern t_snd snd;
|
||||
extern uint32 mcycles_vdp;
|
||||
extern int16 SVP_cycles;
|
||||
extern const int16 SVP_cycles;
|
||||
extern uint8 system_hw;
|
||||
extern uint8 system_bios;
|
||||
extern uint32 system_clock;
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue