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/cry0d_2.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/cry0d_2.asm')
| -rw-r--r-- | audio/sfx/cry0d_2.asm | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/audio/sfx/cry0d_2.asm b/audio/sfx/cry0d_2.asm index 9d570892..8c6dd050 100644 --- a/audio/sfx/cry0d_2.asm +++ b/audio/sfx/cry0d_2.asm @@ -1,40 +1,40 @@ -SFX_Cry0D_2_Ch4: - dutycycle 136 - squarenote 5, 15, 2, 1616 - squarenote 9, 13, 1, 1632 - squarenote 5, 14, 2, 1554 - squarenote 9, 12, 1, 1570 - squarenote 5, 15, 2, 1552 - squarenote 6, 13, 1, 1568 - loopchannel 2, SFX_Cry0D_2_Ch4 - endchannel +SFX_Cry0D_2_Ch5: + duty_cycle_pattern 136 + square_note 5, 15, 2, 1616 + square_note 9, 13, 1, 1632 + square_note 5, 14, 2, 1554 + square_note 9, 12, 1, 1570 + square_note 5, 15, 2, 1552 + square_note 6, 13, 1, 1568 + sound_loop 2, SFX_Cry0D_2_Ch5 + sound_ret -SFX_Cry0D_2_Ch5: - dutycycle 64 - squarenote 4, 0, 8, 0 - squarenote 5, 15, 2, 1617 - squarenote 9, 13, 1, 1633 - squarenote 5, 14, 2, 1556 - squarenote 8, 12, 1, 1572 - squarenote 5, 15, 2, 1553 - squarenote 12, 13, 1, 1569 - squarenote 5, 14, 2, 1556 - squarenote 8, 12, 1, 1572 - squarenote 5, 15, 2, 1553 - squarenote 4, 13, 1, 1569 - endchannel +SFX_Cry0D_2_Ch6: + duty_cycle_pattern 64 + square_note 4, 0, 8, 0 + square_note 5, 15, 2, 1617 + square_note 9, 13, 1, 1633 + square_note 5, 14, 2, 1556 + square_note 8, 12, 1, 1572 + square_note 5, 15, 2, 1553 + square_note 12, 13, 1, 1569 + square_note 5, 14, 2, 1556 + square_note 8, 12, 1, 1572 + square_note 5, 15, 2, 1553 + square_note 4, 13, 1, 1569 + sound_ret -SFX_Cry0D_2_Ch7: - noisenote 6, 13, 2, 28 - noisenote 9, 11, 1, 44 - noisenote 8, 12, 2, 44 - noisenote 9, 11, 1, 60 - noisenote 6, 12, 2, 44 - noisenote 9, 10, 2, 60 - noisenote 7, 12, 2, 44 - noisenote 5, 10, 1, 60 - noisenote 9, 12, 2, 44 - noisenote 4, 10, 1, 60 - endchannel +SFX_Cry0D_2_Ch8: + noise_note 6, 13, 2, 28 + noise_note 9, 11, 1, 44 + noise_note 8, 12, 2, 44 + noise_note 9, 11, 1, 60 + noise_note 6, 12, 2, 44 + noise_note 9, 10, 2, 60 + noise_note 7, 12, 2, 44 + noise_note 5, 10, 1, 60 + noise_note 9, 12, 2, 44 + noise_note 4, 10, 1, 60 + sound_ret |
