瀏覽代碼

InputEventJoypadMotion::set_axis - reject invalid axis

LATRio 3 年之前
父節點
當前提交
41c1cfe28e
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      core/input/input_event.cpp

+ 2 - 0
core/input/input_event.cpp

@@ -864,6 +864,8 @@ void InputEventMouseMotion::_bind_methods() {
 ///////////////////////////////////
 
 void InputEventJoypadMotion::set_axis(JoyAxis p_axis) {
+	ERR_FAIL_INDEX(p_axis, JOY_AXIS_MAX);
+
 	axis = p_axis;
 	emit_changed();
 }