diff options
Diffstat (limited to 'src/gui/emotepopup.h')
-rw-r--r-- | src/gui/emotepopup.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/emotepopup.h b/src/gui/emotepopup.h index cb1c7b89..ee905cd6 100644 --- a/src/gui/emotepopup.h +++ b/src/gui/emotepopup.h @@ -107,11 +107,11 @@ class EmotePopup : public Popup std::vector<const ImageSprite*> mEmotes; Image *mSelectionImage; - int mSelectedEmoteIndex; - int mHoveredEmoteIndex; + int mSelectedEmoteIndex = -1; + int mHoveredEmoteIndex = -1; - int mRowCount; - int mColumnCount; + int mRowCount = 1; + int mColumnCount = 1; using Listeners = std::list<gcn::SelectionListener *>; |