From 424a09ccc8d11bf485c7b7b590a0275e46362c6b Mon Sep 17 00:00:00 2001 From: elasota Date: Mon, 9 Mar 2020 01:40:34 -0400 Subject: [PATCH] Fix missing returns --- GpApp/RoomInfo.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GpApp/RoomInfo.cpp b/GpApp/RoomInfo.cpp index a7db647..9f5b8ba 100644 --- a/GpApp/RoomInfo.cpp +++ b/GpApp/RoomInfo.cpp @@ -412,8 +412,12 @@ int16_t RoomFilter(Dialog *dial, const TimeTaggedVOSEvent *evt) { mouseIs = dial->GetWindow()->MouseToLocal(mouseEvent); HiliteTileOver(surface, mouseIs); + + return -1; } } + + return -1; } #endif