summaryrefslogtreecommitdiff
path: root/sprite.h
diff options
context:
space:
mode:
Diffstat (limited to 'sprite.h')
-rw-r--r--sprite.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sprite.h b/sprite.h
index 67dce1612..2bacfd734 100644
--- a/sprite.h
+++ b/sprite.h
@@ -107,7 +107,7 @@ typedef struct RandomizedSpriteGroup {
byte num_groups; // must be power of 2
// Take the group with appropriate index:
- SpriteGroup *groups;
+ SpriteGroup **groups;
} RandomizedSpriteGroup;
typedef struct CallbackResultSpriteGroup {
@@ -133,7 +133,7 @@ struct SpriteGroup {
};
struct DeterministicSpriteGroupRange {
- SpriteGroup group;
+ SpriteGroup *group;
byte low;
byte high;
};