mirror of
https://codeberg.org/hkzlab/TK2048.git
synced 2026-01-08 02:09:18 +11:00
Tweak strings to indicate DEMO mode
This commit is contained in:
parent
46f3662322
commit
a3425993b1
3 changed files with 11 additions and 1 deletions
|
|
@ -33,6 +33,9 @@
|
|||
#define MOVES_TEXT_X 27
|
||||
#define MOVES_TEXT_Y 8
|
||||
|
||||
#define BOTTOM_TEXT_X 1
|
||||
#define BOTTOM_TEXT_Y 23
|
||||
|
||||
#define WIN_SCORE_BONUS 10000
|
||||
|
||||
static state_page_data* state_page = (state_page_data*)STATE_PAGE;
|
||||
|
|
@ -77,6 +80,8 @@ void main(void) {
|
|||
}
|
||||
|
||||
// Draw the initial state of the game
|
||||
vdp_print_string(0, BOTTOM_TEXT_X, BOTTOM_TEXT_Y, "hkz@social.chinwag.org 2025");
|
||||
|
||||
num_to_decbuf(state_page->hi_score, 5, text_buf); // High score
|
||||
decbuf_to_ascii(5, text_buf);
|
||||
vdp_print_string(0, HSCORE_TEXT_X, HSCORE_TEXT_Y, (char*)text_buf);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue