diff options
Diffstat (limited to 'MinimapText.cpp')
-rw-r--r-- | MinimapText.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MinimapText.cpp b/MinimapText.cpp index 7638b4e..974558d 100644 --- a/MinimapText.cpp +++ b/MinimapText.cpp @@ -46,7 +46,7 @@ void __fastcall minimapProxy(Registers* registers) return; } - std::string woodString = std::to_string((player->pResources->wood)); + std::string woodString = std::to_string(((int)player->pResources->wood)); std::string foodString = std::to_string((int)player->pResources->food); std::string goldString = std::to_string((int)player->pResources->gold); std::string stoneString = std::to_string((int)player->pResources->stone); |