JoshuaBrookover / bigg

bgfx, imgui, glfw, glm
The Unlicense
226 stars 35 forks source link

Issue in OSX Catalina #26

Closed giulioz closed 4 years ago

giulioz commented 4 years ago

Mac OS Catalina changed the signature of objc_msgSend, so it has to be casted using a function pointer. The file to change is bgfx.cpp, adding this line of code:

id (*objc_msgSend2)(id obj, SEL sel) = (id(*)(id, SEL))objc_msgSend;
giulioz commented 4 years ago

Just realized that is not bigg related...