mirror of https://github.com/stella-emu/stella.git
Fix missing const caught by clang-tidy.
This commit is contained in:
parent
bc0dce8487
commit
b71573f1f6
|
@ -147,7 +147,7 @@ void Driving::updateControllerAxes()
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void Driving::updateMouseAxes()
|
void Driving::updateMouseAxes()
|
||||||
{
|
{
|
||||||
Int32 oldCounter = myCounter;
|
const Int32 oldCounter = myCounter;
|
||||||
static constexpr int MJ_Threshold = 2;
|
static constexpr int MJ_Threshold = 2;
|
||||||
|
|
||||||
// Mouse motion and button events
|
// Mouse motion and button events
|
||||||
|
|
Loading…
Reference in New Issue