mirror of https://github.com/xemu-project/xemu.git
mcpx: Remove set but not used count variable
This commit is contained in:
parent
530a7b6515
commit
212988421f
|
@ -166,7 +166,6 @@ void dsp_run(DSPState* dsp, int cycles)
|
|||
|
||||
if (dsp->save_cycles <= 0) return;
|
||||
|
||||
int count = 0;
|
||||
int dma_timer = 0;
|
||||
|
||||
while (dsp->save_cycles > 0)
|
||||
|
@ -174,7 +173,6 @@ void dsp_run(DSPState* dsp, int cycles)
|
|||
dsp56k_execute_instruction(&dsp->core);
|
||||
dsp->save_cycles -= dsp->core.instr_cycle;
|
||||
dsp->core.cycle_count++;
|
||||
count++;
|
||||
|
||||
if (dsp->dma.control & DMA_CONTROL_RUNNING) {
|
||||
dma_timer++;
|
||||
|
|
Loading…
Reference in New Issue