Skip to content

Commit f81acf0

Browse files
committed
Remove unnecessary cast
1 parent 38d1367 commit f81acf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imgui-SFML.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ void RenderDrawLists(ImDrawData* draw_data)
10951095

10961096
unsigned int getConnectedJoystickId()
10971097
{
1098-
for (unsigned int i = 0; i < (unsigned int)sf::Joystick::Count; ++i)
1098+
for (unsigned int i = 0; i < sf::Joystick::Count; ++i)
10991099
{
11001100
if (sf::Joystick::isConnected(i))
11011101
return i;

0 commit comments

Comments
 (0)