Skip to content

Commit

Permalink
Fix missmatch signness.
Browse files Browse the repository at this point in the history
  • Loading branch information
MStachowicz committed Sep 29, 2024
1 parent d457085 commit ec1cd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/System/AssetManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ namespace System
const ImVec2 window_size = ImGui::GetContentRegionAvail();
const int columns = std::max(1, (int)(window_size.x / (button_size.x + ImGui::GetStyle().ItemSpacing.x)));
const int rows = std::max(1, (int)(window_size.y / (button_size.y + ImGui::GetStyle().ItemSpacing.y)));
int i = 0;
unsigned int i = 0;

for (int row = 0; row < rows; row++)
{
Expand Down

0 comments on commit ec1cd35

Please sign in to comment.