diff options
Diffstat (limited to 'src/gui/touchscreengui.cpp')
-rw-r--r-- | src/gui/touchscreengui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/touchscreengui.cpp b/src/gui/touchscreengui.cpp index b2a4b489a..70f1c5163 100644 --- a/src/gui/touchscreengui.cpp +++ b/src/gui/touchscreengui.cpp @@ -739,7 +739,7 @@ void TouchScreenGUI::translateEvent(const SEvent &event) /* * Add to own copy of event list... * android would provide this information but Irrlicht guys don't - * wanna design a efficient interface + * wanna design an efficient interface */ id_status toadd{}; toadd.id = event.TouchInput.ID; @@ -848,7 +848,7 @@ void TouchScreenGUI::translateEvent(const SEvent &event) s32 dy = Y - m_pointerpos[event.TouchInput.ID].Y; m_pointerpos[event.TouchInput.ID] = v2s32(X, Y); - // adapt to similar behaviour as pc screen + // adapt to similar behavior as pc screen const double d = g_settings->getFloat("mouse_sensitivity", 0.001f, 10.0f) * 3.0f; m_camera_yaw_change -= dx * d; |