1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fixing compile error related to missing return value from input.cpp

This commit is contained in:
Samuel Batista
2014-03-14 00:01:27 -04:00
parent bdb5d68e77
commit c573adb829

View File

@@ -283,7 +283,7 @@ Point2 InputDefault::get_mouse_speed() const {
int InputDefault::get_mouse_button_mask() const { int InputDefault::get_mouse_button_mask() const {
OS::get_singleton()->get_mouse_button_state(); return OS::get_singleton()->get_mouse_button_state();
} }