mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07: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:
parent
7f50bb5579
commit
77894f0fe6
@ -377,7 +377,7 @@ void DSP_WriteMailboxLow(bool _CPUMailbox, u16 _uLowMail)
|
||||
|
||||
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
|
||||
/*
|
||||
@ -389,7 +389,6 @@ void DSP_Update(int cycles)
|
||||
else
|
||||
cycles_between_ss_update = 81000000 / 200;
|
||||
|
||||
static int cycle_count = 0;
|
||||
cycle_count += cycles;
|
||||
if (cycle_count > cycles_between_ss_update)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user