Fixed Warning Unhandeled enum values in switch as src/UI/SlotArea.cpp line 54
parent
3712ee7b11
commit
a99bece3fa
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue