Skip to content

Commit eaad527

Browse files
committed
Changed _AUD3WAVERAM to AUD3WAVERAM
1 parent db8a1c0 commit eaad527

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

HISTORY.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,5 @@
104104
- Added `PAD_*` constants for combined button and Control Pad masks
105105
- Added `B_COLOR_*` red/green/blue bit numbers
106106
- Corrected comments on `B_BG_PRIO` and `B_OAM_PRIO`
107+
- **Rev 6.0.0** - 2025-06-30 *(Rangi42)*
108+
- Changed `_AUD3WAVERAM` to `AUD3WAVERAM`

hardware.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endc
2222
; Define the include guard and the current hardware.inc version
2323
; (do this after the RGBDS version check since the `def` syntax depends on it)
2424
def HARDWARE_INC equ 1
25-
def HARDWARE_INC_VERSION equs "5.1.0"
25+
def HARDWARE_INC_VERSION equs "6.0.0"
2626

2727
; Usage: rev_Check_hardware_inc <min_ver>
2828
; Examples:
@@ -422,7 +422,7 @@ def B_AUDENA_ENABLE_CH1 equ 0 ; 1 = channel 1 is running [ro]
422422

423423
; -- AUD3WAVE ($FF30-$FF3F) ---------------------------------------------------
424424
; Audio channel 3 wave pattern RAM [r/w]
425-
def _AUD3WAVERAM equ $FF30 ; $FF30-$FF3F
425+
def AUD3WAVERAM equ $FF30 ; $FF30-$FF3F
426426

427427
def rAUD3WAVE_0 equ $FF30
428428
def rAUD3WAVE_1 equ $FF31

hardware_compat.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,8 @@ def AUD2HIGHF_PERIOD_HIGH equ AUD2HIGH_PERIOD_HIGH
139139

140140
def AUD3ENAB_ENABLE equ B_AUD3ENA_ENABLE
141141

142+
def _AUD3WAVERAM equ AUD3WAVERAM
143+
142144
def AUD3LEVELF_VOLUME equ AUD3LEVEL_VOLUME
143145

144146
def AUD3HIGHB_RESTART equ B_AUD3HIGH_RESTART

0 commit comments

Comments
 (0)