Skip to content

Commit

Permalink
Shouldn't use uint
Browse files Browse the repository at this point in the history
  • Loading branch information
joveeater committed Sep 27, 2023
1 parent e5110a6 commit e9a4cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/armor_layers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ void show_armor_layers_ui( Character &who )
int leftListLines = 0;
int rightListLines = 0;

std::vector<uint> tmp_worn;
std::vector<int> tmp_worn;
std::array<std::string, 13> armor_cat = {{
_( "Torso" ), _( "Head" ), _( "Eyes" ), _( "Mouth" ), _( "L. Arm" ), _( "R. Arm" ),
_( "L. Hand" ), _( "R. Hand" ), _( "L. Leg" ), _( "R. Leg" ), _( "L. Foot" ),
Expand Down

0 comments on commit e9a4cc5

Please sign in to comment.