diff --git a/src/openrct2/rct12/RCT12.h b/src/openrct2/rct12/RCT12.h index 16b3e24dfc..ad68b6c38d 100644 --- a/src/openrct2/rct12/RCT12.h +++ b/src/openrct2/rct12/RCT12.h @@ -290,7 +290,9 @@ constexpr TileElementType ToOpenRCT2TileElementType(RCT12TileElementType rct12ty return static_cast(rct12type); default: - throw std::runtime_error("This tile element type cannot be converted directly!"); + throw std::runtime_error( + "This tile element type cannot be converted directly! Tile element type: " + + std::to_string(static_cast(rct12type))); } }