mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Match types in comparison.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5544 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -377,7 +377,7 @@ void DSP_WriteMailboxLow(bool _CPUMailbox, u16 _uLowMail)
|
|||||||
|
|
||||||
void DSP_Update(int cycles)
|
void DSP_Update(int cycles)
|
||||||
{
|
{
|
||||||
int dsp_cycles = cycles / 6; //(jit?20:6);
|
unsigned int dsp_cycles = cycles / 6; //(jit?20:6);
|
||||||
|
|
||||||
// Sound stream update job has been handled by AudioDMA routine, which is more efficient
|
// Sound stream update job has been handled by AudioDMA routine, which is more efficient
|
||||||
/*
|
/*
|
||||||
@ -389,7 +389,6 @@ void DSP_Update(int cycles)
|
|||||||
else
|
else
|
||||||
cycles_between_ss_update = 81000000 / 200;
|
cycles_between_ss_update = 81000000 / 200;
|
||||||
|
|
||||||
static int cycle_count = 0;
|
|
||||||
cycle_count += cycles;
|
cycle_count += cycles;
|
||||||
if (cycle_count > cycles_between_ss_update)
|
if (cycle_count > cycles_between_ss_update)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user