From c573adb8293dc53bf2ba17a0342b10f39965fbf5 Mon Sep 17 00:00:00 2001 From: Samuel Batista Date: Fri, 14 Mar 2014 00:01:27 -0400 Subject: [PATCH] Fixing compile error related to missing return value from input.cpp --- core/os/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/os/input.cpp b/core/os/input.cpp index e732eac323e..d7c0d86d645 100644 --- a/core/os/input.cpp +++ b/core/os/input.cpp @@ -283,7 +283,7 @@ Point2 InputDefault::get_mouse_speed() const { int InputDefault::get_mouse_button_mask() const { - OS::get_singleton()->get_mouse_button_state(); + return OS::get_singleton()->get_mouse_button_state(); }