Skip to content

Commit

Permalink
update about page
Browse files Browse the repository at this point in the history
  • Loading branch information
KrahJohlito authored and Tupakaveli committed Dec 2, 2019
1 parent 01b672a commit cd5ae9a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions include/lang.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ enum _STR_IDS {
_STR_PERGAME_SETTINGS,
_STR_ALL_SETTINGS,
_STR_GAME_SETTINGS_PROMPT,
_STR_FORUM_DETAILS,

LANG_STR_COUNT
};
Expand Down
1 change: 1 addition & 0 deletions lng/lang_English.lng
Original file line number Diff line number Diff line change
Expand Up @@ -295,3 +295,4 @@ Global
Per Game
All
Select settings to remove.
Support Forums:
9 changes: 7 additions & 2 deletions src/dialogs.c
Original file line number Diff line number Diff line change
Expand Up @@ -785,11 +785,11 @@ struct UIItem diaAbout[] = {
{UI_BREAK},

{UI_SPACER},
{UI_LABEL, 0, 1, 1, -1, 0, 15, {.label = {"ifcaro - izdubar - jimmikaelkael - misfire - Polo35", -1}}},
{UI_LABEL, 0, 1, 1, -1, 0, 15, {.label = {"ifcaro - izdubar - jimmikaelkael - Maximus32 - misfire", -1}}},
{UI_BREAK},

{UI_SPACER},
{UI_LABEL, 0, 1, 1, -1, 0, 15, {.label = {"reprep - SP193 - volca - Maximus32", -1}}},
{UI_LABEL, 0, 1, 1, -1, 0, 15, {.label = {"Polo35 - reprep - SP193 - volca", -1}}},
{UI_BREAK},

{UI_SPACER},
Expand Down Expand Up @@ -825,6 +825,11 @@ struct UIItem diaAbout[] = {
{UI_LABEL, 0, 1, 1, -1, 0, 0, {.label = {NULL, _STR_BUILD_DETAILS}}}, {UI_SPACER}, {UI_LABEL, ABOUT_BUILD_DETAILS, 1, 1, -1, 0, 0, {.label = {NULL, -1}}},
{UI_BREAK},

// Support details
{UI_BREAK},
{UI_LABEL, 0, 1, 1, -1, 0, 0, {.label = {NULL, _STR_FORUM_DETAILS}}}, {UI_SPACER}, {UI_LABEL, 0, 1, 1, -1, 0, 0, {.label = {"psx-place.com - psx-scene.com", -1}}},
{UI_BREAK},

// buttons
{UI_OK, 0, 1, 1, -1, 0, 0, {.label = {NULL, _STR_OK}}},
{UI_BREAK},
Expand Down
9 changes: 4 additions & 5 deletions src/gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,16 +212,15 @@ void guiShowAbout()
snprintf(OPLVersion, sizeof(OPLVersion), _l(_STR_OPL_VER), OPL_VERSION);
diaSetLabel(diaAbout, ABOUT_TITLE, OPLVersion);

snprintf(OPLBuildDetails, sizeof(OPLBuildDetails), ""
snprintf(OPLBuildDetails, sizeof(OPLBuildDetails), "GSM %s"
#ifdef __RTL
" RTL"
" - RTL"
#endif
" GSM %s"
#ifdef IGS
" IGS %s"
" - IGS %s"
#endif
#ifdef PADEMU
" PADEMU"
" - PADEMU"
#endif
//Version numbers
, GSM_VERSION
Expand Down
1 change: 1 addition & 0 deletions src/lang.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ static char *internalEnglish[LANG_STR_COUNT] = {
"Per Game",
"All",
"Select settings to remove.",
"Support Forums:",
};

static int guiLangID = 0;
Expand Down

0 comments on commit cd5ae9a

Please sign in to comment.