1
0
Fork 0

Cleanup: GS don't have "start_date"

pull/10451/head
glx22 2023-02-04 00:55:11 +01:00 committed by Loïc Guilloux
parent 6aafccfb22
commit cef9931e53
2 changed files with 12 additions and 18 deletions

View File

@ -376,7 +376,7 @@ struct AISettingsWindow : public Window {
TextColour colour;
uint idx = 0;
if (StrEmpty(config_item.description)) {
if (!strcmp(config_item.name, "start_date")) {
if (this->slot != OWNER_DEITY && !strcmp(config_item.name, "start_date")) {
/* Build-in translation */
str = STR_AI_SETTINGS_START_DELAY;
colour = TC_LIGHT_BLUE;

View File

@ -212,14 +212,8 @@ struct GSConfigWindow : public Window {
TextColour colour;
uint idx = 0;
if (StrEmpty(config_item.description)) {
if (!strcmp(config_item.name, "start_date")) {
/* Build-in translation */
str = STR_AI_SETTINGS_START_DELAY;
colour = TC_LIGHT_BLUE;
} else {
str = STR_JUST_STRING;
colour = TC_ORANGE;
}
} else {
str = STR_AI_SETTINGS_SETTING;
colour = TC_LIGHT_BLUE;