VideoCommon: Change free-look's middle-mouse action to roll the camera.

This commit is contained in:
Jordan Woyak
2019-03-09 10:25:41 -06:00
parent 5c5e6df038
commit 779e618046
6 changed files with 28 additions and 61 deletions

View File

@ -4,8 +4,6 @@
#pragma once
#include <array>
#include <QEvent>
#include <QWidget>
@ -43,5 +41,5 @@ private:
static constexpr int MOUSE_HIDE_DELAY = 3000;
QTimer* m_mouse_timer;
std::array<float, 2> m_last_mouse{};
QPoint m_last_mouse{};
};