aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/people.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/people.h')
-rw-r--r--engines/sludge/people.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/people.h b/engines/sludge/people.h
index f11ac2fbee..470f35282d 100644
--- a/engines/sludge/people.h
+++ b/engines/sludge/people.h
@@ -41,7 +41,7 @@ struct animFrame {
#define EXTRA_RECTANGULAR 64
struct personaAnimation {
- struct loadedSpriteBank *theSprites;
+ struct LoadedSpriteBank *theSprites;
animFrame *frames;
int numFrames;
};
@@ -110,7 +110,7 @@ bool setCharacterWalkSpeed(int f, int objNum);
void animatePerson(int obj, personaAnimation *);
void animatePerson(int obj, persona *per);
personaAnimation *createPersonaAnim(int num, struct variableStack *&stacky);
-inline void setBankFile(personaAnimation *newP, loadedSpriteBank *sB) {
+inline void setBankFile(personaAnimation *newP, LoadedSpriteBank *sB) {
newP->theSprites = sB;
}
bool setPersonExtra(int f, int newSetting);