Skip to content

Commit

Permalink
dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
spannerisms committed Dec 2, 2021
1 parent f5da115 commit 2bde1a0
Show file tree
Hide file tree
Showing 12 changed files with 59 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set version="14.3.0"
set version="14.3.1"

cd target

Expand Down
4 changes: 3 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h4 class="listheader">List of shame:</h4>
<li>Everdrive</li>
<li>SuperNT jailbreak</li>
<li>BizHawk's bsnes core (v85)</li>
<li>Canoe (SNES Classics will give a C7 error)</li>
<li>Canoe (SNES Classics will give a C7 error for the SA-1 ROM)</li>
</ul>

</section>
Expand Down Expand Up @@ -816,6 +816,8 @@ <h3 id="menuHUD">HUD extras</h3>
<dd>Something; address: $7E03A4,X</dd>
<dt>Direction</dt>
<dd>Generally used for direction of ancilla; address: $7E0C72,X</dd>
<dt>Decay</dt>
<dd>Timer for wall arrows before disappearing; address: $7E03B1,X</dd>
</dl>
</dd>
<dt>HUD lag<sup class="badge sa1-badge">SA1</sup></dt>
Expand Down
Binary file modified docs/patcher/files/sa1.bps
Binary file not shown.
Binary file modified docs/patcher/files/sa1rando.bps
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/patcher/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LTTPHack",
"version": "14.3.0",
"version": "14.3.1",
"base": {
"name": "A Link to the Past (J) 1.0",
"crc": "3322EFFC"
Expand Down
12 changes: 10 additions & 2 deletions docs/updates.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@

<h2>Latest update</h2>

<h3><a href="https://github.com/spannerisms/lttphack/releases/tag/14.3.1">v14.3.1</a> <span class="releaseDate">2 December 2021</span></h3>

<ul class="changes">
<li>Nevermind. I hate this font and so does everyone else.</li>
<li>Fixed shortcut button display.</li>
<li>Added arrow decay timer for Sirius.</li>
</ul>

<h2>Older updates</h2>

<h3><a href="https://github.com/spannerisms/lttphack/releases/tag/14.3.0">v14.3.0</a> <span class="releaseDate">29 November 2021</span></h3>

<ul class="changes">
Expand All @@ -24,8 +34,6 @@ <h3><a href="https://github.com/spannerisms/lttphack/releases/tag/14.3.0">v14.3.
</ul>


<h2>Older updates</h2>

<h3><a href="https://github.com/spannerisms/lttphack/releases/tag/14.2.2">v14.2.2</a> <span class="releaseDate">26 September 2021</span></h3>

<ul class="changes">
Expand Down
13 changes: 7 additions & 6 deletions src/cm_draw.asm
Original file line number Diff line number Diff line change
Expand Up @@ -911,14 +911,14 @@ CMDRAW_CTRL_SHORTCUT_FINAL:
REP #$30

LDA.b [SA1IRAM.cm_writer]
XBA
TAY

STZ.b SA1IRAM.cm_writer

; remap buttons to a more useful order
; LRABXYSs^v<>
SEP #$20

; dpad
ASL : ASL : ASL : ASL
TSB.b SA1IRAM.cm_writer
Expand All @@ -936,19 +936,20 @@ CMDRAW_CTRL_SHORTCUT_FINAL:
TYA : AND.b #$40 : LSR : LSR : LSR : LSR
TSB.b SA1IRAM.cm_writer+1

XBA
TAY

; LR
XBA : AND.b #$30 : ASL : ASL
AND.b #$30 : ASL : ASL
TSB.b SA1IRAM.cm_writer+1

; A
TYA : XBA : AND.b #$80 : ASL : ASL
TYA : AND.b #$80 : LSR : LSR
TSB.b SA1IRAM.cm_writer+1

; X
TYA : XBA : AND.b #$40 : ASL : ASL
TYA : AND.b #$40 : LSR : LSR : LSR
TSB.b SA1IRAM.cm_writer+1


REP #$20

LDA.w #12
Expand Down
3 changes: 2 additions & 1 deletion src/cm_hud.asm
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ endmacro
%list_item("Ancilla MSX")

;===================================================================================================
!ancprop_count = 9
!ancprop_count = 10
%choice("Ancilla prop 1", !config_ancprop1, !ancprop_count, ancprop_names)
%choice("Ancilla prop 2", !config_ancprop2, !ancprop_count, ancprop_names)
%choice("Ancilla prop 3", !config_ancprop3, !ancprop_count, ancprop_names)
Expand Down Expand Up @@ -138,6 +138,7 @@ endmacro
%new_ancprop($03E4, "Tile prop")
%new_ancprop($03A4, "EG check")
%new_ancprop($0C72, "Direction")
%new_ancprop($03B1, "Decay")

;===================================================================================================

Expand Down
35 changes: 35 additions & 0 deletions src/hudextras.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2019,6 +2019,40 @@ linesentry_ancilla_all:
dw linesentry_ancilla_tile-1
dw linesentry_ancilla_egcheck-1
dw linesentry_ancilla_direction-1
dw linesentry_ancilla_decay-1

; placeholders
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1
dw linesentry_ancilla_x-1

;---------------------------------------------------------------------------------------------------

Expand All @@ -2028,6 +2062,7 @@ linesentry_ancilla_tile:
linesentry_ancilla_direction:
linesentry_ancilla_layer:
linesentry_ancilla_altitude:
linesentry_ancilla_decay:
.next_ancilla
INX
INX
Expand Down
Binary file modified src/resources/menu_font.2bpp
Binary file not shown.
Binary file modified src/resources/menu_font.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/resources/menu_font.xcf
Binary file not shown.

0 comments on commit 2bde1a0

Please sign in to comment.