Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Attempted APU desync fix
  • Loading branch information
rdanbrook committed Dec 18, 2015
1 parent dcaed96 commit 7c8d9d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/core/NstApu.cpp
Expand Up @@ -968,7 +968,7 @@ namespace Nes


NST_SINGLE_CALL dword Apu::Synchronizer::Clock(const dword output,const dword sampleRate,const Cpu& cpu) NST_SINGLE_CALL dword Apu::Synchronizer::Clock(const dword output,const dword sampleRate,const Cpu& cpu)
{ {
if (sync) /*if (sync)
{ {
if (duty >= 60*4) if (duty >= 60*4)
streamed += output; streamed += output;
Expand Down Expand Up @@ -1008,7 +1008,7 @@ namespace Nes
return actualRate; return actualRate;
} }
} }
} }*/


return 0; return 0;
} }
Expand Down

1 comment on commit 7c8d9d9

@eugene-s-nesdev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Official 1.40 compiled with native VS2005 and DXSDK-summer-2004
"vanilla" and "soundfix" version.
http://hwm.us.to/famimusic/Upload/EmuStuff/nestopia_1.40_soundfix.rar

Try it. Seems this patch really work ;)

Please sign in to comment.