1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

fix for last commit

This commit is contained in:
FunkyFr3sh 2024-08-09 09:26:38 +02:00
parent 423ca1d5a3
commit d7d12e520f

View File

@ -225,7 +225,7 @@ VERSIONHELPERAPI IsAndroid(void) {
const char* release = NULL;
verhelp_wine_get_host_version(&sysname, &release);
return release && strstr(release, "android") == 0;
return release && strstr(release, "android") != NULL;
}
#endif