瀏覽代碼

Fix compile error with clang

Marcelo Fernandez 7 年之前
父節點
當前提交
1dfb95de22
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/editor_spin_slider.cpp

+ 1 - 1
editor/editor_spin_slider.cpp

@@ -64,7 +64,7 @@ void EditorSpinSlider::_gui_input(const Ref<InputEvent> &p_event) {
 			double v = get_value();
 
 			double diff_x = mm->get_relative().x;
-			diff_x = Math::pow(ABS(diff_x), 1.8f) * SGN(diff_x);
+			diff_x = Math::pow(ABS(diff_x), 1.8) * SGN(diff_x);
 			diff_x *= 0.1;
 
 			v += diff_x * get_step();