Remove linkgraph duration not day length scaled setting

Now always enabled
This commit is contained in:
Jonathan G Rennison
2023-05-22 19:38:52 +01:00
parent 5dd99fb046
commit 9a4512f789
14 changed files with 14 additions and 33 deletions

View File

@@ -340,6 +340,8 @@ struct ListSettingDesc : SettingDesc {
struct NullSettingDesc : SettingDesc {
NullSettingDesc(const SaveLoad &save) :
SettingDesc(save, "", SF_NOT_IN_CONFIG, nullptr, false, nullptr) {}
NullSettingDesc(const SaveLoad &save, const char *name, const char *patx_name) :
SettingDesc(save, name, SF_NOT_IN_CONFIG, nullptr, false, patx_name) {}
virtual ~NullSettingDesc() {}
void FormatValue(char *buf, const char *last, const void *object) const override { NOT_REACHED(); }