aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ClothTile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/ClothTile.cpp')
-rw-r--r--Minecraft.World/ClothTile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/ClothTile.cpp b/Minecraft.World/ClothTile.cpp
index 70ba4837..8c18b01c 100644
--- a/Minecraft.World/ClothTile.cpp
+++ b/Minecraft.World/ClothTile.cpp
@@ -33,6 +33,6 @@ void ClothTile::registerIcons(IconRegister *iconRegister)
for (int i = 0; i < 16; i++)
{
- icons[i] = iconRegister->registerIcon(L"cloth_" + _toString(i) );
+ icons[i] = iconRegister->registerIcon(L"cloth_" + std::to_wstring(i) );
}
} \ No newline at end of file