Fix version compare for MSW 3D Connexion mouse

This commit is contained in:
Seth Hillbrand 2023-08-30 15:10:45 -07:00
parent 1a8fcdfdd7
commit 7af5037ad7
1 changed files with 1 additions and 1 deletions

View File

@ -48,5 +48,5 @@ bool KIPLATFORM::DRIVERS::Valid3DConnexionDriverVersion()
RegCloseKey( hKey );
}
return !version.empty() && compareVersionStrings( MIN_WIN_VERSION, version );
return !version.empty() && compareVersionStrings( MIN_WIN_VERSION, version ) <= 0;
}