1
0
Fork 0

Fixed Warning Unhandeled enum values in switch as src/UI/SlotArea.cpp line 54

This commit is contained in:
worktycho 2013-12-09 13:57:09 +00:00
parent 3712ee7b11
commit a99bece3fa
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,3 @@
// SlotArea.cpp
// Implements the cSlotArea class and its descendants
@ -65,6 +64,10 @@ void cSlotArea::Clicked(cPlayer & a_Player, int a_SlotNum, eClickAction a_ClickA
DblClicked(a_Player, a_SlotNum);
return;
}
default:
{
break;
}
}
cItem Slot(*GetSlot(a_SlotNum, a_Player));