diff options
| author | dannye <33dannye@gmail.com> | 2019-07-27 23:21:39 -0500 |
|---|---|---|
| committer | dannye <33dannye@gmail.com> | 2019-07-27 23:21:39 -0500 |
| commit | 20c4116788d4d29b14c85ffce77e65faf89716b7 (patch) | |
| tree | 7dcc36a1b3568ebe5b98b3cc7ddb8344a2162cc9 /audio/sfx/cry25_3.asm | |
| parent | Merge pull request #220 from Rangi42/master (diff) | |
| download | pokeyellow-20c4116788d4d29b14c85ffce77e65faf89716b7.tar.gz pokeyellow-20c4116788d4d29b14c85ffce77e65faf89716b7.tar.xz pokeyellow-20c4116788d4d29b14c85ffce77e65faf89716b7.zip | |
Update audio macro names
change audio channel numbers from 0-7 back to 1-8
change all note macros back to single note macro
todo: fix comments with old macro names, update noise macros/instrument names
Diffstat (limited to 'audio/sfx/cry25_3.asm')
| -rw-r--r-- | audio/sfx/cry25_3.asm | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/audio/sfx/cry25_3.asm b/audio/sfx/cry25_3.asm index 610fa04b..22ce220d 100644 --- a/audio/sfx/cry25_3.asm +++ b/audio/sfx/cry25_3.asm @@ -1,26 +1,26 @@ -SFX_Cry25_3_Ch4: - dutycycle 165 - squarenote 6, 15, 4, 1856 - squarenote 15, 14, 3, 1840 - squarenote 4, 15, 4, 1856 - squarenote 5, 11, 3, 1864 - squarenote 8, 13, 1, 1872 - endchannel +SFX_Cry25_3_Ch5: + duty_cycle_pattern 165 + square_note 6, 15, 4, 1856 + square_note 15, 14, 3, 1840 + square_note 4, 15, 4, 1856 + square_note 5, 11, 3, 1864 + square_note 8, 13, 1, 1872 + sound_ret -SFX_Cry25_3_Ch5: - dutycycle 119 - squarenote 6, 12, 3, 1810 - squarenote 15, 11, 3, 1796 - squarenote 3, 12, 3, 1810 - squarenote 4, 12, 3, 1825 - squarenote 8, 11, 1, 1842 - endchannel +SFX_Cry25_3_Ch6: + duty_cycle_pattern 119 + square_note 6, 12, 3, 1810 + square_note 15, 11, 3, 1796 + square_note 3, 12, 3, 1810 + square_note 4, 12, 3, 1825 + square_note 8, 11, 1, 1842 + sound_ret -SFX_Cry25_3_Ch7: - noisenote 8, 13, 6, 44 - noisenote 12, 12, 6, 60 - noisenote 10, 11, 6, 44 - noisenote 8, 9, 1, 28 - endchannel +SFX_Cry25_3_Ch8: + noise_note 8, 13, 6, 44 + noise_note 12, 12, 6, 60 + noise_note 10, 11, 6, 44 + noise_note 8, 9, 1, 28 + sound_ret |
