This commit is contained in:
root
2021-09-12 12:45:51 +02:00
parent 9c60f28aa1
commit c36e196fdb
2 changed files with 2 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ Comment=MS/MD/MCD/32X emulator
Exec=picodrive.sh %f
Icon=picodrive
Categories=emulators;
SelectorFilter=zip,md,smd,sms,32x,cue,cso,iso,chd' > opk/picodrive.funkey-s.desktop
SelectorFilter=zip,md,smd,sms,32x,cue,cso,chd' > opk/picodrive.funkey-s.desktop
mksquashfs opk/ picodrive_v1.98_funkey-s.opk -all-root -noappend -no-exports -no-xattrs

View File

@@ -14,7 +14,7 @@
/* limitter */
#define Limit16(val) \
val -= val >> 2; /* reduce level to avoid clipping */ \
val -= val >> 3; /* reduce level to avoid clipping */ \
if ((short)val != val) val = (val < 0 ? MINOUT : MAXOUT)
int mix_32_to_16l_level;