diff --git a/lumber.asm b/lumber.asm index b879313..70d3aaf 100644 --- a/lumber.asm +++ b/lumber.asm @@ -12,7 +12,7 @@ ;--------------------------------------------------- .macro build - dta d"0.81" ; number of this build (4 bytes) + dta d"0.82" ; number of this build (4 bytes) .endm .macro RMTSong diff --git a/msx/feat.txt b/msx/feat.txt index a14c6be..7b10234 100644 --- a/msx/feat.txt +++ b/msx/feat.txt @@ -1,4 +1,5 @@ STEREOMODE equ 0 +PSEUDOSTEREO equ 1 ;* --------BEGIN-------- ;* Z:\GitHub\Young-lumberjack\msx\tbm5_str.rmt FEAT_SFX equ 1 diff --git a/msx/rmtplayr.asm b/msx/rmtplayr.asm index 5963058..608abf3 100644 --- a/msx/rmtplayr.asm +++ b/msx/rmtplayr.asm @@ -21,6 +21,14 @@ ;* ;2 => compile RMTplayer for 4 tracks stereo L1 R2 R3 L4 ;* ;3 => compile RMTplayer for 4 tracks stereo L1 L2 R3 R4 ;* +; Message from Pecus: +; This is a new minor feature. +; It only works if STEREOMODE is set to 0 (mono) +; If on then plays on the second POKEY all sounds delayed by one frame. +; +; PSEUDOSTEREO equ 0/1 +; +;* ;* RMT FEATures definitions file ;* For optimizations of RMT player routine to concrete RMT modul only! icl "feat.txt" @@ -31,12 +39,6 @@ TRACKS equ 8 TRACKS equ 4 .ENDIF -; Message from Pecus: -; This is a new minor feature. -; It only works if STEREOMODE is set to 0 -; It plays on the second POKEY all sounds delayed by one frame. - -PSEUDOSTEREO equ 1 ; 0=off , 1=on ;* ;*PLAYER equ $3400