Browse Source

Fix compile error with clang

Marcelo Fernandez 7 years ago
parent
commit
1dfb95de22
1 changed files with 1 additions and 1 deletions
  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();