Codechange: Remove min/max functions in favour of STL variants (#8502)
This commit is contained in:
@@ -260,7 +260,7 @@ void GRFParameterInfo::SetValue(struct GRFConfig *config, uint32 value)
|
||||
} else {
|
||||
SB(config->param[this->param_nr], this->first_bit, this->num_bit, value);
|
||||
}
|
||||
config->num_params = max<uint>(config->num_params, this->param_nr + 1);
|
||||
config->num_params = std::max<uint>(config->num_params, this->param_nr + 1);
|
||||
SetWindowDirty(WC_GAME_OPTIONS, WN_GAME_OPTIONS_NEWGRF_STATE);
|
||||
}
|
||||
|
||||
@@ -339,7 +339,7 @@ static bool CalcGRFMD5Sum(GRFConfig *config, Subdirectory subdir)
|
||||
if (f == nullptr) return false;
|
||||
|
||||
long start = ftell(f);
|
||||
size = min(size, GRFGetSizeOfDataSection(f));
|
||||
size = std::min(size, GRFGetSizeOfDataSection(f));
|
||||
|
||||
if (start < 0 || fseek(f, start, SEEK_SET) < 0) {
|
||||
FioFCloseFile(f);
|
||||
|
Reference in New Issue
Block a user