From 755b7a45ab517a303510b728a9c54e48f9216557 Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 14 Aug 2015 23:42:49 +0200 Subject: [PATCH] Adding missing break statement --- src/gwin/gwin_widget.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gwin/gwin_widget.c b/src/gwin/gwin_widget.c index 9dc4d0d8..c536b88a 100644 --- a/src/gwin/gwin_widget.c +++ b/src/gwin/gwin_widget.c @@ -223,7 +223,7 @@ static void gwidgetEvent(void *param, GEvent *pe) { // If we got this far we can finally pass the event ((gwidgetVMT*)widgetInFocus->vmt)->KeyboardEvent((GWidgetObject*)widgetInFocus, pke); } - + break; #endif #if GFX_USE_GINPUT && GINPUT_NEED_TOGGLE