You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
stereo_panning: force any non-zero arg to 1
This commit is contained in:
@@ -156,7 +156,7 @@ ENDM
|
|||||||
enum force_stereo_panning_cmd ; $e4
|
enum force_stereo_panning_cmd ; $e4
|
||||||
force_stereo_panning: MACRO
|
force_stereo_panning: MACRO
|
||||||
db force_stereo_panning_cmd
|
db force_stereo_panning_cmd
|
||||||
dn %1111 * \1, %1111 * \2 ; left enable, right enable
|
dn %1111 * (1 && \1), %1111 * (1 && \2) ; left enable, right enable
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum volume_cmd ; $e5
|
enum volume_cmd ; $e5
|
||||||
@@ -229,7 +229,7 @@ ENDM
|
|||||||
enum stereo_panning_cmd ; $ef
|
enum stereo_panning_cmd ; $ef
|
||||||
stereo_panning: MACRO
|
stereo_panning: MACRO
|
||||||
db stereo_panning_cmd
|
db stereo_panning_cmd
|
||||||
dn %1111 * \1, %1111 * \2 ; left enable, right enable
|
dn %1111 * (1 && \1), %1111 * (1 && \2) ; left enable, right enable
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum sfx_toggle_noise_cmd ; $f0
|
enum sfx_toggle_noise_cmd ; $f0
|
||||||
|
Reference in New Issue
Block a user