mirror of https://github.com/OpenTTD/OpenTTD
Codechange: Use SQInteger for generic numbers in script_bridgelist
parent
58bf2f7176
commit
83826b1793
|
@ -21,11 +21,11 @@ ScriptBridgeList::ScriptBridgeList()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ScriptBridgeList_Length::ScriptBridgeList_Length(uint length)
|
ScriptBridgeList_Length::ScriptBridgeList_Length(SQInteger length)
|
||||||
{
|
{
|
||||||
for (byte j = 0; j < MAX_BRIDGES; j++) {
|
for (byte j = 0; j < MAX_BRIDGES; j++) {
|
||||||
if (ScriptBridge::IsValidBridge(j)) {
|
if (ScriptBridge::IsValidBridge(j)) {
|
||||||
if (length >= (uint)ScriptBridge::GetMinLength(j) && length <= (uint)ScriptBridge::GetMaxLength(j)) this->AddItem(j);
|
if (length >= ScriptBridge::GetMinLength(j) && length <= ScriptBridge::GetMaxLength(j)) this->AddItem(j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,7 +32,7 @@ public:
|
||||||
/**
|
/**
|
||||||
* @param length The length of the bridge you want to build.
|
* @param length The length of the bridge you want to build.
|
||||||
*/
|
*/
|
||||||
ScriptBridgeList_Length(uint length);
|
ScriptBridgeList_Length(SQInteger length);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* SCRIPT_BRIDGELIST_HPP */
|
#endif /* SCRIPT_BRIDGELIST_HPP */
|
||||||
|
|
Loading…
Reference in New Issue