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
2 changes: 1 addition & 1 deletion src/main.asm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lorom
!VERSION_MAJOR = 2
!VERSION_MINOR = 6
!VERSION_BUILD = 6
!VERSION_REV = 0
!VERSION_REV = 1

table ../resources/normal.tbl
print ""
Expand Down
4 changes: 2 additions & 2 deletions src/mainmenu.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2819,10 +2819,10 @@ save_freeze:
%cm_toggle("Freeze on Load State", !ram_freeze_on_load, #$0001, #0)

save_middoorsave:
%cm_toggle("Auto-Save Mid-Door", !ram_auto_save_state, #$0001, #0)
%cm_toggle_bit("Auto-Save Mid-Door", !ram_auto_save_state, #$0001, #0)

save_alwayssave:
%cm_toggle("Auto-Save Every Door", !ram_auto_save_state+1, #$80, #0)
%cm_toggle_bit("Auto-Save Every Door", !ram_auto_save_state, #$8000, #0)

save_delete:
%cm_jsl("DEV Delete Savestate", .routine, #$DEAD)
Expand Down
1 change: 1 addition & 0 deletions web/data/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- Added draygon turret rng and infinite-doppler mode for Phantoon (2.6.6)
- Added Super HUD and various other infohud modes and room strats (2.6.6)
- Added custom HUD number graphics and Be Right Back screen (2.6.6)
- Fix issue with savestate settings auto-save options (2.6.6.1)

# Version 2.5.x
- Added a separate version of savestates for MiSTer, Everdrives, and most modern emulators (not SNES Classic/VC) (2.5.0)
Expand Down
2 changes: 1 addition & 1 deletion web/data/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Super Metroid Practice Hack",
"version": "2.6.6",
"version": "2.6.6.1",
"variants": ["NTSC", "PAL"],
"base": {
"NTSC": {
Expand Down