7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 23:23:47 +00:00

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

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;
}