diff options
author | segfault <toni@impl.cc> | 2020-05-23 01:16:23 +0200 |
---|---|---|
committer | segfault <toni@impl.cc> | 2020-05-23 01:16:23 +0200 |
commit | 375a94c2709021e04be7edaaf06134e6aa756ed7 (patch) | |
tree | 1c4126a7a9c363bbad9b6c4f1fbe19df2b7be666 /ESP.cpp | |
parent | 84e7ec39812c0a8bfca954c523b4dbb0608714ea (diff) |
fixed several compile warnings
Diffstat (limited to 'ESP.cpp')
-rw-r--r-- | ESP.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -80,9 +80,9 @@ void ESP::DrawBox(Vector3 position, Vector2 edgeSize, int32_t color) Renderer::Get()->RenderRect(ivOne, ivFour, ivTwo, ivThree, color); } -void ESP::DrawCircle(Unit* unit, int radius, int32_t color, int smoothness = 16, int thickness = 1, bool drawName = false) +void ESP::DrawCircle(Unit* unit, int radius, int32_t color, int smoothness = 16, float thickness = 1.f, bool drawName = false) { - static const float PI = 3.14159265358979323846; + static const float PI = 3.14159265358979323846f; int32_t tileSize = Engine::Get()->GetWorld()->pMap->GetTileSize(); Vector3 center = unit->position; @@ -97,7 +97,7 @@ void ESP::DrawCircle(Unit* unit, int radius, int32_t color, int smoothness = 16, Vector2 screenPos = Engine::Get()->worldToScreen(Vector3(x, y, center.z)); screeenPoints.push_back(ImVec2(screenPos.x, screenPos.y)); } - for (int i = 1; i < screeenPoints.size(); i++) + for (size_t i = 1; i < screeenPoints.size(); i++) { Renderer::Get()->RenderLine(screeenPoints[i], screeenPoints[i - 1], color, thickness); } |