diff --git a/src/patchers/polarware.a b/src/patchers/polarware.a index 102e0b1..45c8bac 100644 --- a/src/patchers/polarware.a +++ b/src/patchers/polarware.a @@ -45,11 +45,13 @@ !byte $F0,$09 ; BEQ +9 !byte $AE ; LDX bcs .exit + sta gDisplayBytes pha txa adc #$09 tax - stx gDisplayBytes + lda #s_tamper + jsr PrintByID pla ldy #$01 jsr modify diff --git a/src/strings/en.a b/src/strings/en.a index 52947ad..19b4fcb 100755 --- a/src/strings/en.a +++ b/src/strings/en.a @@ -113,6 +113,7 @@ StringTable !word .volumename !word .dinkeydos !word .trillium + !word .tamper ; ; Text can contain substitution strings, which ; are replaced by current values at runtime. Each @@ -138,7 +139,7 @@ StringTable ; can be set directly before calling PrintByID. ; .header - !text "Passport by 4am 2018-01-28",$00 + !text "Passport by 4am 2018-01-29",$00 .mainmenu !text "________________________________________",$8D,$8D,$8D,$8D,$8D,$8D,$8D !text " " @@ -430,4 +431,6 @@ StringTable !text "T00,S0B Found Dinkey-DOS",$8D,$00 .trillium !text "T%t,S%0 Found Trillium protection check",$8D,$00 +.tamper + !text "T%t,S%0 Found anti-tamper check",$8D,$00 } diff --git a/src/strings/enid.a b/src/strings/enid.a index 1595721..fa66598 100644 --- a/src/strings/enid.a +++ b/src/strings/enid.a @@ -101,4 +101,5 @@ s_origin = $5F s_volumename = $60 s_dinkeydos = $61 s_trillium = $62 -STRINGCOUNT = $63 +s_tamper = $63 +STRINGCOUNT = $64