bet its this

This commit is contained in:
ConfiG 2023-09-18 16:18:55 +03:00
parent 2726a82e64
commit 264c9e4a64
No known key found for this signature in database
GPG key ID: 44DA1983F524C11B

View file

@ -249,7 +249,7 @@ extern unsigned int ACTUAL_CC_DLL g_uNumberOfDraws;
#define CC_INCREMENT_GL_DRAWS(__n__) g_uNumberOfDraws += __n__
static GEODE_INLINE void ccIncrementGLDraws(int n) {
#ifdef GEODE_IS_MACOS
*reinterpret_cast<int*>(geode::cocos2d::macNumberOfDraws()) += n;
*reinterpret_cast<int*>(cocos2d::macNumberOfDraws()) += n;
#else
CC_INCREMENT_GL_DRAWS(n);
#endif