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/cry0e_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/cry0e_2.asm')
| -rw-r--r-- | audio/sfx/cry0e_2.asm | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/audio/sfx/cry0e_2.asm b/audio/sfx/cry0e_2.asm index 943b12f4..b3849fc5 100644 --- a/audio/sfx/cry0e_2.asm +++ b/audio/sfx/cry0e_2.asm @@ -1,23 +1,23 @@ -SFX_Cry0E_2_Ch4: - dutycycle 165 - squarenote 4, 14, 1, 1792 - squarenote 4, 15, 2, 1920 - squarenote 2, 9, 2, 1856 - squarenote 8, 14, 1, 1536 - endchannel +SFX_Cry0E_2_Ch5: + duty_cycle_pattern 165 + square_note 4, 14, 1, 1792 + square_note 4, 15, 2, 1920 + square_note 2, 9, 2, 1856 + square_note 8, 14, 1, 1536 + sound_ret -SFX_Cry0E_2_Ch5: - dutycycle 10 - squarenote 4, 11, 1, 1761 - squarenote 3, 12, 2, 1761 - squarenote 3, 6, 2, 1665 - squarenote 8, 11, 1, 1505 - endchannel +SFX_Cry0E_2_Ch6: + duty_cycle_pattern 10 + square_note 4, 11, 1, 1761 + square_note 3, 12, 2, 1761 + square_note 3, 6, 2, 1665 + square_note 8, 11, 1, 1505 + sound_ret -SFX_Cry0E_2_Ch7: - noisenote 2, 6, 1, 50 - noisenote 2, 6, 1, 33 - noisenote 8, 6, 1, 17 - endchannel +SFX_Cry0E_2_Ch8: + noise_note 2, 6, 1, 50 + noise_note 2, 6, 1, 33 + noise_note 8, 6, 1, 17 + sound_ret |
