Skip to content

Commit f10b3bf

Browse files
Merge pull request #378 from MetroidAdvRandomizerSystem/custom-doors
Feature: Add color blind accessible door graphics
2 parents 6fe106a + eaa5230 commit f10b3bf

5 files changed

Lines changed: 10 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## Unreleased - 2026-??-??
4+
- Changed: The hatch graphics have been changed to be more accessible to color blind people.
45
- Fixed: HUD no longer occassionally disappears after saving the animals.
56

67
## 0.11.0 - 2026-01-17

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ To get a list of all assembly flags, you can check out [this file](https://githu
2424

2525
The code is licensed under GPLv3. See [LICENSE.md](LICENSE.md).
2626

27-
[Item graphics](data/major-tanks.gfx) are licensed under CC-BY-SA-4.0 from the MARS Team. See [LICENSE-CC-BY-SA-4.0.md](LICENSE-CC-BY-SA-4.0.md).
27+
[Item graphics](data/major-tanks.gfx) and the [Door graphics](data/accessible-doors.gfx) are licensed under CC-BY-SA-4.0 from the MARS Team. See [LICENSE-CC-BY-SA-4.0.md](LICENSE-CC-BY-SA-4.0.md).

data/accessible-doors.gfx

4 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
; Changes the graphics of the door hatches in order to
2+
; make it possible to differentiate them without color.
3+
4+
.org 083F28C8h ; Address of common graphics
5+
.area 1000h
6+
.incbin "data/accessible-doors.gfx"
7+
.endarea

src/main.s

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ DataFreeSpaceEnd equ DataFreeSpace + DataFreeSpaceLen
126126
; Accessibility patches
127127
; Patches which make the game more acccessible to people.
128128
.if ACCESSIBILITY
129+
.include "src/a11y/accessible-door-hatch-gfx.s"
129130
.include "src/a11y/accessible-enemy-gfx.s"
130131
.include "src/a11y/accessible-flashing.s"
131132
.endif

0 commit comments

Comments
 (0)