mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Fix function definitions to match their declarations
This makes sure every function is properly declared, which includes proper `extern` wrappers.
This commit is contained in:
@@ -25,7 +25,7 @@ constexpr uint8 RCT2_LANGUAGE_ID_ENGLISH_UK = 0;
|
||||
constexpr uint8 RCT2_LANGUAGE_ID_BLANK = 254;
|
||||
constexpr uint8 RCT2_LANGUAGE_ID_END = 255;
|
||||
|
||||
bool StringIsBlank(utf8 * str)
|
||||
static bool StringIsBlank(utf8 * str)
|
||||
{
|
||||
for (utf8 * ch = str; *ch != '\0'; ch++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user