Codechange: remove special strings for language and resolutions (#8824)

As OpenTTD grew, we found other ways to do this, and we are no
longer in need for a hack like this.
This commit is contained in:
Patric Stout
2021-03-09 10:58:33 +01:00
committed by GitHub
parent 9fdc881005
commit b21ba566ae
5 changed files with 35 additions and 35 deletions

View File

@@ -61,6 +61,7 @@ public:
StringID String() const override;
void SetParam(uint index, uint64 value) { decode_params[index] = value; }
void SetParamStr(uint index, const char *str) { this->SetParam(index, (uint64)(size_t)str); }
};
/**