diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-12-24 12:51:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-24 12:51:53 -0600 |
commit | 87958f2f87b9f7f6e5548d9cb2ac53c3339b78d5 (patch) | |
tree | f3f6503c2fd2c52834e0ccc6b12452ff2cb85c32 /include/sprite.h | |
parent | f209cbd7a0519b49fcf3f1b7a3fca27d6dcaacd8 (diff) | |
parent | 47ab4efef0b910ce085be718761edba14a7eb487 (diff) |
Merge pull request #147 from DizzyEggg/dump_pointers
Get rid of pointer baseroms
Diffstat (limited to 'include/sprite.h')
-rw-r--r-- | include/sprite.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/sprite.h b/include/sprite.h index 170d77c3f..d5c6bc402 100644 --- a/include/sprite.h +++ b/include/sprite.h @@ -120,10 +120,6 @@ union AffineAnimCmd {.jump = {.type = AFFINEANIMCMDTYPE_JUMP, .target = _target}} #define AFFINEANIMCMD_END \ {.type = AFFINEANIMCMDTYPE_END} -#define AFFINEANIMCMD_LOOP(_count) \ - {.loop = {.type = AFFINEANIMCMDTYPE_LOOP, .count = _count}} -#define AFFINEANIMCMD_JUMP(_target) \ - {.jump = {.type = AFFINEANIMCMDTYPE_JUMP, .target = _target}} struct AffineAnimState { |