mirror of
https://github.com/libretro/Mu.git
synced 2026-09-23 15:15:43 +00:00
Update changelog
This commit is contained in:
@@ -1,3 +1,20 @@
|
||||
------------------------------------------
|
||||
v0.9.5 to v0.9.8(Oct 18 2018 - ??? ?? 2018)
|
||||
|
||||
RetroArch GUI:
|
||||
*switch to official VFS API, no more blobs of fopen() calls
|
||||
*update the core info file
|
||||
|
||||
Qt GUI:
|
||||
*fixed audio threading
|
||||
*removed unneeded buffers on the GUI side and replaced them with a mutex
|
||||
|
||||
Core:
|
||||
*sound works perfectly as far as I can tell(unless a program purposely sets the sample length > 1 second, which is useless for generating sound anyway)
|
||||
*add ARM optimized 68k CPU core(not fully working yet, SIGSEGVs when running)
|
||||
*allow safety checks to be disabled with EMU_NO_SAFETY, accuracy is maintained when its not defined
|
||||
*switch byte buffer orders to optimize for 16 bit opcode fetches
|
||||
|
||||
------------------------------------------
|
||||
v0.9 to v0.9.5(Sept 22 2018 - Oct 18 2018)
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ void inductorPwmDutyCycle(int32_t now, int32_t clocks, double dutyCycle){
|
||||
double cutoffPoint = dutyCycle - 0.50;//cant go past the actual duty cycle percentage
|
||||
|
||||
#if !defined(EMU_NO_SAFETY)
|
||||
if(now + clocks > AUDIO_CLOCK_RATE)
|
||||
if(now + clocks >= AUDIO_CLOCK_RATE)
|
||||
return;
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user