You've already forked TP-PC-Port
mirror of
https://github.com/CraftyBoss/TP-PC-Port.git
synced 2026-04-01 08:53:30 -07:00
currently the grass actor does draw in game, but very incorrectly (scale is all wrong, textures arent working, etc) this actor is going to take a while to get working properly for sure. a big issue with bg_obj actor was that its base class is dBgS_MoveBgActor, which uses virtual functions. as a result, this actor has a vtable at 0x0 that could have been in a different position when compiled through codewarrior, but modern compilers place vtables at the beginning of a class's memory, so work needs to be done for any actor that implements a class with a vtable.