summaryrefslogtreecommitdiff
path: root/src/widgets
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-03-17 15:45:37 +0000
committerfrosch <frosch@openttd.org>2012-03-17 15:45:37 +0000
commit161b6c348b5db6b4177ab5d2eb47607e1b706035 (patch)
tree74baa5720eecf1a556f31e7ed21996d8c42cc5b1 /src/widgets
parent2c956cac800b3c26ddcd8e2ecd2f0895982557c0 (diff)
downloadopenttd-161b6c348b5db6b4177ab5d2eb47607e1b706035.tar.xz
(svn r24037) -Feature: Allow display of baseset textfiles. (LordAro)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/settings_widget.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/widgets/settings_widget.h b/src/widgets/settings_widget.h
index fe8637096..4b3fe3350 100644
--- a/src/widgets/settings_widget.h
+++ b/src/widgets/settings_widget.h
@@ -26,12 +26,15 @@ enum GameOptionsWidgets {
WID_GO_SCREENSHOT_DROPDOWN, ///< Select the screenshot type... please use PNG!.
WID_GO_BASE_GRF_DROPDOWN, ///< Use to select a base GRF.
WID_GO_BASE_GRF_STATUS, ///< Info about missing files etc.
- WID_GO_BASE_GRF_DESCRIPTION, ///< Description of selected base GRF.
+ WID_GO_BASE_GRF_TEXTFILE, ///< Open base GRF readme, changelog (+1) or license (+2).
+ WID_GO_BASE_GRF_DESCRIPTION = WID_GO_BASE_GRF_TEXTFILE + TFT_END, ///< Description of selected base GRF.
WID_GO_BASE_SFX_DROPDOWN, ///< Use to select a base SFX.
- WID_GO_BASE_SFX_DESCRIPTION, ///< Description of selected base SFX.
+ WID_GO_BASE_SFX_TEXTFILE, ///< Open base SFX readme, changelog (+1) or license (+2).
+ WID_GO_BASE_SFX_DESCRIPTION = WID_GO_BASE_SFX_TEXTFILE + TFT_END, ///< Description of selected base SFX.
WID_GO_BASE_MUSIC_DROPDOWN, ///< Use to select a base music set.
WID_GO_BASE_MUSIC_STATUS, ///< Info about corrupted files etc.
- WID_GO_BASE_MUSIC_DESCRIPTION, ///< Description of selected base music set.
+ WID_GO_BASE_MUSIC_TEXTFILE, ///< Open base music readme, changelog (+1) or license (+2).
+ WID_GO_BASE_MUSIC_DESCRIPTION = WID_GO_BASE_MUSIC_TEXTFILE + TFT_END, ///< Description of selected base music set.
};
/** Widgets of the #GameDifficultyWindow class. */