VGUIView: add missing return

This commit is contained in:
Marco Cawthorne 2024-01-15 16:34:09 -08:00
parent da194e8eed
commit 30903f7683
Signed by: eukara
GPG key ID: CE2032F0A2882A22

View file

@ -69,5 +69,8 @@ bool VGUIView::Input (float flEVType, float flKey, float flChar, float flDevID)
if (ret == true)
return true;
} while (wNext);
return (ret);
}