mirror of
https://gitlab.com/drummyfish/anarch.git
synced 2024-11-23 17:32:16 -05:00
Move text to texts.h
This commit is contained in:
parent
88c14426b5
commit
3884384f74
2
game.h
2
game.h
@ -4539,7 +4539,7 @@ void SFG_drawWinOverlay()
|
||||
RCL_abs(y - (SFG_GAME_RESOLUTION_Y / 2)) <= (INNER_STRIP_HEIGHT / 2) ?
|
||||
0 : 172);
|
||||
|
||||
char textLine[] = "level done";
|
||||
char textLine[] = SFG_TEXT_LEVEL_COMPLETE;
|
||||
|
||||
uint16_t y = SFG_GAME_RESOLUTION_Y / 2 -
|
||||
((STRIP_HEIGHT + INNER_STRIP_HEIGHT) / 2) / 2;
|
||||
|
2
texts.h
2
texts.h
@ -32,6 +32,8 @@ static const char *SFG_menuItemTexts[] =
|
||||
#define SFG_TEXT_KILLS "kills"
|
||||
#define SFG_TEXT_SAVE_PROMPT "save? L no yes R"
|
||||
#define SFG_TEXT_SAVED "saved"
|
||||
#define SFG_TEXT_LEVEL_COMPLETE "level done"
|
||||
|
||||
#define SFG_VERSION_STRING "1.0d"
|
||||
/**<
|
||||
Version numbering is following: major.minor for stable releases,
|
||||
|
Loading…
Reference in New Issue
Block a user