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/cry20_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/cry20_2.asm')
| -rw-r--r-- | audio/sfx/cry20_2.asm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/audio/sfx/cry20_2.asm b/audio/sfx/cry20_2.asm index 7bd21c47..ed22a3f0 100644 --- a/audio/sfx/cry20_2.asm +++ b/audio/sfx/cry20_2.asm @@ -1,24 +1,24 @@ -SFX_Cry20_2_Ch4: - dutycycle 240 - squarenote 13, 15, 1, 1297 - squarenote 13, 14, 1, 1301 - squarenote 13, 14, 1, 1297 - squarenote 8, 13, 1, 1297 - endchannel +SFX_Cry20_2_Ch5: + duty_cycle_pattern 240 + square_note 13, 15, 1, 1297 + square_note 13, 14, 1, 1301 + square_note 13, 14, 1, 1297 + square_note 8, 13, 1, 1297 + sound_ret -SFX_Cry20_2_Ch5: - dutycycle 21 - squarenote 12, 14, 1, 1292 - squarenote 12, 13, 1, 1296 - squarenote 14, 12, 1, 1292 - squarenote 8, 12, 1, 1290 - endchannel +SFX_Cry20_2_Ch6: + duty_cycle_pattern 21 + square_note 12, 14, 1, 1292 + square_note 12, 13, 1, 1296 + square_note 14, 12, 1, 1292 + square_note 8, 12, 1, 1290 + sound_ret -SFX_Cry20_2_Ch7: - noisenote 14, 15, 2, 101 - noisenote 13, 14, 2, 85 - noisenote 14, 13, 2, 86 - noisenote 8, 13, 1, 102 - endchannel +SFX_Cry20_2_Ch8: + noise_note 14, 15, 2, 101 + noise_note 13, 14, 2, 85 + noise_note 14, 13, 2, 86 + noise_note 8, 13, 1, 102 + sound_ret |
