Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

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

## 0.11.0 - 2026-01-17
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ To get a list of all assembly flags, you can check out [this file](https://githu

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

[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).
[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).
Binary file added data/accessible-doors.gfx
Binary file not shown.
7 changes: 7 additions & 0 deletions src/a11y/accessible-door-hatch-gfx.s
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
; Changes the graphics of the door hatches in order to
; make it possible to differentiate them without color.

.org 083F28C8h ; Address of common graphics
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should specify that it's common background graphics (as opposed to sprite graphics)

.area 1000h
.incbin "data/accessible-doors.gfx"
.endarea
1 change: 1 addition & 0 deletions src/main.s
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ DataFreeSpaceEnd equ DataFreeSpace + DataFreeSpaceLen
; Accessibility patches
; Patches which make the game more acccessible to people.
.if ACCESSIBILITY
.include "src/a11y/accessible-door-hatch-gfx.s"
.include "src/a11y/accessible-enemy-gfx.s"
.include "src/a11y/accessible-flashing.s"
.endif
Expand Down