Remove some unnecessary version ifdefs

This commit is contained in:
LagoLunatic
2026-03-31 22:27:13 -04:00
parent 207f6e911f
commit a4de4f08fb
6 changed files with 23 additions and 99 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ static BOOL daKN_Draw(kn_class* i_this) {
void anm_init(kn_class* i_this, int anmResIdx, float morf, unsigned char loopMode, float speed, int soundResIdx) {
if (soundResIdx >= 0) {
i_this->mpMorf->setAnm(
(J3DAnmTransform*)dComIfG_getObjectRes("KN", anmResIdx), loopMode, morf, speed, 0.0f, -1.0f, (void*)dComIfG_getObjectRes("KN", soundResIdx)
(J3DAnmTransform*)dComIfG_getObjectRes("KN", anmResIdx), loopMode, morf, speed, 0.0f, -1.0f, dComIfG_getObjectRes("KN", soundResIdx)
);
} else {
i_this->mpMorf->setAnm((J3DAnmTransform*)dComIfG_getObjectRes("KN", anmResIdx), loopMode, morf, speed, 0.0f, -1.0f, NULL);