From 67719a662fae28418886e14e5ab6c8cc2a2a12ff Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Thu, 15 Oct 2020 18:26:59 -0400 Subject: [PATCH] Cleanup --- src/code_1AF120.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/code_1AF120.c b/src/code_1AF120.c index 778e091aa0..cc7e7701a9 100644 --- a/src/code_1AF120.c +++ b/src/code_1AF120.c @@ -14,15 +14,3 @@ ApiStatus GetDamageIntensity(ScriptInstance* script, s32 isInitialCall) { } INCLUDE_ASM(s32, "code_1AF120", ActorAddMovePos); -/*ApiStatus ActorAddMovePos(ScriptInstance* script, s32 isInitialCall) { - Bytecode* args = script->ptrReadPos; - Actor* actor; - Vec3f* actorMoveCurrentPos; - - actor = (Actor*)get_variable(script, *args++); - actorMoveCurrentPos = &actor->moveCurrentPos; - actorMoveCurrentPos->x += get_variable(script, *args++); - actorMoveCurrentPos->y += get_variable(script, *args++); - actorMoveCurrentPos->z += get_variable(script, *args++); - return ApiStatus_DONE2; -}*/