Clover.cpp: NoxAppPlayer

也许是无效的?
This commit is contained in:
鸾瑶綾舞 2023-12-09 18:56:00 +08:00
parent 50d469cc45
commit 48b1b40e1c

View File

@ -101,11 +101,27 @@ FILE* fake_fopen(const char *filename, const char *mode) {
LOGI("[Shamrock] bypass emu detection"); LOGI("[Shamrock] bypass emu detection");
return nullptr; return nullptr;
} }
if (strstr(filename, "libnoxd.so")) { //NoxAppPlayer if (strstr(filename, "libnoxd.so")) { //NoxAppPlayer
LOGI("[Shamrock] bypass emu detection"); LOGI("[Shamrock] bypass emu detection");
return nullptr; return nullptr;
} }
if (strstr(filename, "libnoxspeedup.so")) { //NoxAppPlayer if (strstr(filename, "libnoxspeedup.so")) { //NoxAppPlayer
LOGI("[Shamrock] bypass emu detection");
return nullptr;
}
if (strstr(filename, "nox-prop")) { //NoxAppPlayer (Useless?)
LOGI("[Shamrock] bypass emu detection");
return nullptr;
}
if (strstr(filename, "nox-vbox-sf")) { //NoxAppPlayer (Useless?)
LOGI("[Shamrock] bypass emu detection");
return nullptr;
}
if (strstr(filename, "noxd")) { //NoxAppPlayer (Useless?)
LOGI("[Shamrock] bypass emu detection");
return nullptr;
}
if (strstr(filename, "noxspeedup")) { //NoxAppPlayer (Useless?)
LOGI("[Shamrock] bypass emu detection"); LOGI("[Shamrock] bypass emu detection");
return nullptr; return nullptr;
} }