Fixed Warning Unhandeled enum values in switch as src/UI/SlotArea.cpp line 54
This commit is contained in:
parent
3712ee7b11
commit
a99bece3fa
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
// SlotArea.cpp
|
// SlotArea.cpp
|
||||||
|
|
||||||
// Implements the cSlotArea class and its descendants
|
// 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);
|
DblClicked(a_Player, a_SlotNum);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cItem Slot(*GetSlot(a_SlotNum, a_Player));
|
cItem Slot(*GetSlot(a_SlotNum, a_Player));
|
||||||
|
Loading…
Reference in New Issue
Block a user