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/cry1b_2.asm | |
parent | 36597a7917144bbf5d9ae63a0f9d537f6f58eb74 (diff) |
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/cry1b_2.asm')
-rw-r--r-- | audio/sfx/cry1b_2.asm | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/audio/sfx/cry1b_2.asm b/audio/sfx/cry1b_2.asm index 1faaf5bb..97f85337 100644 --- a/audio/sfx/cry1b_2.asm +++ b/audio/sfx/cry1b_2.asm @@ -1,26 +1,26 @@ -SFX_Cry1B_2_Ch4: - dutycycle 240 - squarenote 6, 15, 7, 1728 - squarenote 15, 14, 7, 1792 - squarenote 4, 15, 4, 1776 - squarenote 4, 14, 4, 1760 - squarenote 8, 13, 1, 1744 - endchannel +SFX_Cry1B_2_Ch5: + duty_cycle_pattern 240 + square_note 6, 15, 7, 1728 + square_note 15, 14, 7, 1792 + square_note 4, 15, 4, 1776 + square_note 4, 14, 4, 1760 + square_note 8, 13, 1, 1744 + sound_ret -SFX_Cry1B_2_Ch5: - dutycycle 10 - squarenote 7, 14, 6, 1665 - squarenote 14, 13, 5, 1729 - squarenote 4, 12, 4, 1713 - squarenote 4, 13, 4, 1697 - squarenote 8, 12, 1, 1681 - endchannel +SFX_Cry1B_2_Ch6: + duty_cycle_pattern 10 + square_note 7, 14, 6, 1665 + square_note 14, 13, 5, 1729 + square_note 4, 12, 4, 1713 + square_note 4, 13, 4, 1697 + square_note 8, 12, 1, 1681 + sound_ret -SFX_Cry1B_2_Ch7: - noisenote 10, 10, 6, 60 - noisenote 14, 9, 4, 44 - noisenote 5, 10, 3, 60 - noisenote 8, 9, 1, 44 - endchannel +SFX_Cry1B_2_Ch8: + noise_note 10, 10, 6, 60 + noise_note 14, 9, 4, 44 + noise_note 5, 10, 3, 60 + noise_note 8, 9, 1, 44 + sound_ret |