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
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}