Browse Source

Move text to texts.h

merge-requests/2/head
Miloslav Číž 2 years ago
parent
commit
3884384f74
  1. 2
      game.h
  2. 2
      texts.h

2
game.h

@ -4539,7 +4539,7 @@ void SFG_drawWinOverlay() @@ -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

@ -32,6 +32,8 @@ static const char *SFG_menuItemTexts[] = @@ -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…
Cancel
Save