1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 15:54:31 +01:00
This commit is contained in:
rd3k
2015-05-29 20:59:16 +01:00
parent 12d5542861
commit 3a55c060f7
3 changed files with 5 additions and 5 deletions

View File

@@ -3509,4 +3509,5 @@ STR_5172 :Will turn on tracking information for guests named after Twitch cha
STR_5173 :Pull Twitch chat as news
STR_5174 :Will use Twitch chat messages preceded by !news for in game notifications
STR_5175 :Input the name of your Twitch channel
STR_5176 :Enable Twitch integration
STR_5176 :Enable Twitch integration
STR_5177 :Fullscreen mode:

View File

@@ -1422,6 +1422,8 @@ enum {
STR_TWITCH_NAME_DESC = 5175,
STR_TWITCH_ENABLE = 5176,
STR_FULLSCREEN_MODE = 5177,
// Have to include resource strings (from scenarios and objects) for the time being now that language is partially working
STR_COUNT = 32768
};

View File

@@ -967,10 +967,7 @@ static void window_options_paint()
switch (w->page) {
case WINDOW_OPTIONS_PAGE_DISPLAY:
gfx_draw_string_left(dpi, STR_DISPLAY_RESOLUTION, w, 0, w->x + 10, w->y + window_options_widgets[WIDX_RESOLUTION].top + 1);
sprintf(buffer, "%c%c%s", FORMAT_MEDIUMFONT, FORMAT_WINDOW_COLOUR_2, "Fullscreen mode:");
gfx_draw_string(dpi, buffer, 0, w->x + 10, w->y + window_options_widgets[WIDX_FULLSCREEN].top + 1);
gfx_draw_string_left(dpi, STR_FULLSCREEN_MODE, w, 12, w->x + 10, w->y + window_options_widgets[WIDX_FULLSCREEN].top + 1);
gfx_draw_string_left(dpi, STR_CONSTRUCTION_MARKER, w, 0, w->x + 10, w->y + window_options_widgets[WIDX_CONSTRUCTION_MARKER].top + 1);
break;
case WINDOW_OPTIONS_PAGE_CULTURE: