mirror of
https://github.com/pkali/scorch_src.git
synced 2026-05-20 22:34:21 +02:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f1e2c4644a | |||
| 4b70dd5937 | |||
| 1c900c09aa | |||
| ea08663c0b | |||
| 463c2da083 | |||
| 200ce4e57d | |||
| 559b73b172 | |||
| e0008e1de1 | |||
| 500b27b6dd |
+12
-2
@@ -1157,8 +1157,18 @@ NoTeamColors
|
|||||||
lda skillTable,x
|
lda skillTable,x
|
||||||
sta difficultyLevel
|
sta difficultyLevel
|
||||||
lda digits+1,x
|
lda digits+1,x
|
||||||
sta NameScreen2+7
|
sta NameScreen2+8
|
||||||
|
ldy #0 ; no team game
|
||||||
|
bit TeamGame
|
||||||
|
bvc NoTeams
|
||||||
|
ldy #"A"
|
||||||
|
txa
|
||||||
|
and #%00000001
|
||||||
|
beq NoBTeam
|
||||||
|
iny
|
||||||
|
NoBTeam
|
||||||
|
NoTeams
|
||||||
|
sty NameScreen2+7
|
||||||
; copy existing name and place cursor at end
|
; copy existing name and place cursor at end
|
||||||
txa ; TankNr
|
txa ; TankNr
|
||||||
:3 asl
|
:3 asl
|
||||||
|
|||||||
@@ -78,6 +78,25 @@ With the advent of [fujinet](https://fujinet.online/) we are thinking about maki
|
|||||||
|
|
||||||
## Changelog:
|
## Changelog:
|
||||||
|
|
||||||
|
###### Version 1.56
|
||||||
|
2026-01-05
|
||||||
|
|
||||||
|
* A/B-Team designation letter added in front of the player number in the Difficulty level selection screen.
|
||||||
|
|
||||||
|
|
||||||
|
###### Version 1.55
|
||||||
|
2026-01-02
|
||||||
|
|
||||||
|
* A team play option has been added. by @Pecusx in #174
|
||||||
|
|
||||||
|
If the cursor indicates the number of players and 4 or 6 players are selected, pressing TAB activates team play. This is indicated by the letter "t" next to the word "Players". Team play is limited to 4 or 6 players and a maximum of 20 rounds. Players with odd numbers are assigned to the A-Team, and players with even numbers are assigned to the B-Team.
|
||||||
|
|
||||||
|
Who knows? When we free up more memory, a more straightforward user interface has a chance. Maybe :)
|
||||||
|
|
||||||
|
For now, get your buddies and play in a completely new way against them loosers :)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
###### Version 1.52
|
###### Version 1.52
|
||||||
2025-01-20
|
2025-01-20
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -25,7 +25,7 @@
|
|||||||
.ENDIF
|
.ENDIF
|
||||||
;---------------------------------------------------
|
;---------------------------------------------------
|
||||||
.ifndef SPLASH
|
.ifndef SPLASH
|
||||||
.def SPLASH = 0 ; if 0 - no splash screens
|
.def SPLASH = 1 ; if 0 - no splash screens
|
||||||
.endif
|
.endif
|
||||||
.ifndef CART_VERSION
|
.ifndef CART_VERSION
|
||||||
.def CART_VERSION = 0 ; if 1 - dual splash screen
|
.def CART_VERSION = 0 ; if 1 - dual splash screen
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
|
|
||||||
;---------------------------------------------------
|
;---------------------------------------------------
|
||||||
.macro build
|
.macro build
|
||||||
dta d"1.55" ; number of this build (4 bytes)
|
dta d"1.57" ; number of this build (4 bytes)
|
||||||
.endm
|
.endm
|
||||||
.macro year
|
.macro year
|
||||||
dta d"2026" ; year of this build (4 bytes)
|
dta d"2026" ; year of this build (4 bytes)
|
||||||
|
|||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -2803,6 +2803,7 @@ notpressed
|
|||||||
; enimation ends
|
; enimation ends
|
||||||
|
|
||||||
jsr GetKeyFast
|
jsr GetKeyFast
|
||||||
|
and #$3f ;CTRL and SHIFT ellimination
|
||||||
cmp #@kbcode._left ; $6
|
cmp #@kbcode._left ; $6
|
||||||
jeq pressedLeft
|
jeq pressedLeft
|
||||||
cmp #@kbcode._right ; $7
|
cmp #@kbcode._right ; $7
|
||||||
|
|||||||
Reference in New Issue
Block a user