fix clang error

This commit is contained in:
coco875
2024-12-21 23:49:14 +01:00
committed by Lywx
parent 32e79fa79a
commit 443b7ae602
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -432,11 +432,11 @@ extern "C" uint8_t GameEngine_OTRSigCheck(const char* data) {
return strncmp(data, sOtrSignature, strlen(sOtrSignature)) == 0;
}
extern "C" float __cosf(float angle) {
extern "C" float __cosf(float angle) throw() {
return cosf(angle);
}
extern "C" float __sinf(float angle) {
extern "C" float __sinf(float angle) throw() {
return sinf(angle);
}