Explicitly initialize members of Settings class to fix undefined behavior

This commit is contained in:
Marcus Huderle 2019-01-05 14:43:21 -06:00
parent 955093cb80
commit 95f712ef6f

View file

@ -2,5 +2,6 @@
Settings::Settings() Settings::Settings()
{ {
this->smartPathsEnabled = false;
this->betterCursors = true;
} }