diff options
author | Patric Stout <truebrain@openttd.org> | 2021-06-03 21:01:00 +0200 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-06-06 21:45:01 +0200 |
commit | 7572603c9d97215afe62cd79e25048237a637616 (patch) | |
tree | 9915b3b0034d8b7088ff6c2d6bfa07265c6e63a3 /src/saveload | |
parent | d835a42c05f6a48f120b47e94a042848a20edd5c (diff) | |
download | openttd-7572603c9d97215afe62cd79e25048237a637616.tar.xz |
Codechange: remove the unused SLF_HEX flag
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/saveload.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/saveload/saveload.h b/src/saveload/saveload.h index 41880952e..ce597affc 100644 --- a/src/saveload/saveload.h +++ b/src/saveload/saveload.h @@ -490,8 +490,6 @@ enum VarTypes { SLF_NO_NETWORK_SYNC = 1 << 10, ///< do not synchronize over network (but it is saved if SLF_NOT_IN_SAVE is not set) SLF_ALLOW_CONTROL = 1 << 11, ///< allow control codes in the strings SLF_ALLOW_NEWLINE = 1 << 12, ///< allow new lines in the strings - SLF_HEX = 1 << 13, ///< print numbers as hex in the config file (only useful for unsigned) - /* 2 more possible flags */ }; typedef uint32 VarType; |