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/cry14_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/cry14_3.asm')
| -rw-r--r-- | audio/sfx/cry14_3.asm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/audio/sfx/cry14_3.asm b/audio/sfx/cry14_3.asm index ce4a27b9..81bd63ca 100644 --- a/audio/sfx/cry14_3.asm +++ b/audio/sfx/cry14_3.asm @@ -1,21 +1,21 @@ -SFX_Cry14_3_Ch4: - dutycycle 240 - squarenote 8, 14, 4, 1936 - squarenote 15, 15, 5, 1984 - squarenote 8, 13, 1, 2008 - endchannel +SFX_Cry14_3_Ch5: + duty_cycle_pattern 240 + square_note 8, 14, 4, 1936 + square_note 15, 15, 5, 1984 + square_note 8, 13, 1, 2008 + sound_ret -SFX_Cry14_3_Ch5: - dutycycle 165 - squarenote 10, 12, 4, 1905 - squarenote 15, 11, 6, 1954 - squarenote 8, 10, 1, 1975 - endchannel +SFX_Cry14_3_Ch6: + duty_cycle_pattern 165 + square_note 10, 12, 4, 1905 + square_note 15, 11, 6, 1954 + square_note 8, 10, 1, 1975 + sound_ret -SFX_Cry14_3_Ch7: - noisenote 8, 14, 4, 76 - noisenote 14, 12, 4, 60 - noisenote 8, 13, 1, 44 - endchannel +SFX_Cry14_3_Ch8: + noise_note 8, 14, 4, 76 + noise_note 14, 12, 4, 60 + noise_note 8, 13, 1, 44 + sound_ret |
