Fix spelling typos (#13730)

This commit is contained in:
Mathias Gibbens 2021-01-08 19:13:00 +00:00 committed by GitHub
parent d49f5576a0
commit 115c92996b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ GameActions::Result::Ptr RideSetSettingAction::Query() const
case RideSetSetting::RideType:
if (!gCheatsAllowArbitraryRideTypeChanges)
{
log_warning("Arbitary ride type changes not allowed.");
log_warning("Arbitrary ride type changes not allowed.");
return MakeResult(GameActions::Status::Disallowed, STR_CANT_CHANGE_OPERATING_MODE);
}
break;

View File

@ -171,7 +171,7 @@ GameActions::Result::Ptr TrackPlaceAction::Query() const
if (!map_check_free_elements_and_reorganise(numElements))
{
log_warning("Not enough free map elments to place track.");
log_warning("Not enough free map elements to place track.");
return std::make_unique<TrackPlaceActionResult>(GameActions::Status::NoFreeElements, STR_TILE_ELEMENT_LIMIT_REACHED);
}
const uint16_t* trackFlags = (rideTypeFlags & RIDE_TYPE_FLAG_FLAT_RIDE) ? FlatTrackFlags : TrackFlags;