Changeset - r19306:cd22a01646ac
[Not reviewed]
master
0 2 0
alberth - 12 years ago 2012-05-06 15:00:13
alberth@openttd.org
(svn r24209) -Cleanup: Remove now unused SGF_NOCOMMA value.
2 files changed with 1 insertions and 5 deletions:
0 comments (0 inline, 0 general)
src/settings_internal.h
Show inline comments
 
@@ -40,7 +40,6 @@ enum SettingGuiFlagLong {
 
	 * Flags directing saving/loading of a variable */
 
	SGF_NONE = 0,
 
	SGF_0ISDISABLED  = 1 << 0, ///< a value of zero means the feature is disabled
 
	SGF_NOCOMMA      = 1 << 1, ///< number without any thousand seperators (no formatting)
 
	SGF_MULTISTRING  = 1 << 2, ///< the value represents a limited number of string-options (internally integer)
 
	SGF_NETWORK_ONLY = 1 << 3, ///< this setting only applies to network games
 
	SGF_CURRENCY     = 1 << 4, ///< the number represents money, so when reading value multiply by exchange rate
src/table/settings.ini
Show inline comments
 
@@ -1084,7 +1084,6 @@ to       = 143
 
base     = GameSettings
 
var      = game_creation.starting_year
 
type     = SLE_INT32
 
guiflags = SGF_NOCOMMA
 
def      = DEF_START_YEAR
 
min      = MIN_YEAR
 
max      = MAX_YEAR
 
@@ -2288,7 +2287,6 @@ proc     = CloseSignalGUI
 
var      = gui.coloured_news_year
 
type     = SLE_INT32
 
flags    = SLF_NOT_IN_SAVE | SLF_NO_NETWORK_SYNC
 
guiflags = SGF_NOCOMMA
 
def      = 2000
 
min      = MIN_YEAR
 
max      = MAX_YEAR
 
@@ -2317,7 +2315,6 @@ str      = STR_CONFIG_SETTING_DRAG_SIGNA
 
var      = gui.semaphore_build_before
 
type     = SLE_INT32
 
flags    = SLF_NOT_IN_SAVE | SLF_NO_NETWORK_SYNC
 
guiflags = SGF_NOCOMMA
 
def      = 1950
 
min      = MIN_YEAR
 
max      = MAX_YEAR
 
@@ -2941,7 +2938,7 @@ ifdef    = ENABLE_NETWORK
 
var      = network.restart_game_year
 
type     = SLE_INT32
 
flags    = SLF_NOT_IN_SAVE | SLF_NO_NETWORK_SYNC
 
guiflags = SGF_0ISDISABLED | SGF_NETWORK_ONLY | SGF_NOCOMMA
 
guiflags = SGF_0ISDISABLED | SGF_NETWORK_ONLY
 
def      = 0
 
min      = MIN_YEAR
 
max      = MAX_YEAR
0 comments (0 inline, 0 general)