Skip to content

Commit

Permalink
v2.18.3.7249
Browse files Browse the repository at this point in the history
commit c1a46a5
refs #22
* #22 音量が負に設定されている曲でフェードアウト後に音量が0にならない

commit b24172b
refs #23
* #23 FIR フィルタに clamp が実装されていない
  • Loading branch information
dgrfactory committed Feb 10, 2021
1 parent 7f9f979 commit a5c0ef8
Show file tree
Hide file tree
Showing 8 changed files with 148 additions and 177 deletions.
8 changes: 4 additions & 4 deletions snesapu.dll/APU.asm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
;59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;
; Copyright (C) 2003-2006 Alpha-II Productions
; Copyright (C) 2003-2020 degrade-factory
; Copyright (C) 2003-2021 degrade-factory
;===================================================================================================

CPU 386
Expand All @@ -45,12 +45,12 @@ SECTION .data ALIGN=256
SECTION .data ALIGN=32
%endif

; ----- degrade-factory code [2020/10/26] -----
; ----- degrade-factory code [2020/12/28] -----
apuOpt DD (CPU_CYC << 24) | (DEBUG << 16) | (DSPINTEG << 17) | (VMETERM << 8) | (VMETERV << 9) | (1 << 10) | (STEREO << 11) \
| (HALFC << 1) | (CNTBK << 2) | (SPEED << 3) | (IPLW << 4) | (DSPBK << 5) | (INTBK << 6)
apuDllVer DD 21862h ;SNESAPU.DLL Current Version
apuDllVer DD 21863h ;SNESAPU.DLL Current Version
apuCmpVer DD 11000h ;SNESAPU.DLL Backwards Compatible Version
apuVerStr DD "2.18.2 (build 7143)" ;SNESAPU.DLL Current Version (32byte String)
apuVerStr DD "2.18.3 (build 7249)" ;SNESAPU.DLL Current Version (32byte String)
DD 8
; ----- degrade-factory code [END] -----

Expand Down
Loading

0 comments on commit a5c0ef8

Please sign in to comment.