aboutsummaryrefslogtreecommitdiff
path: root/saga/palanim.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-08-10 15:01:23 +0000
committerEugene Sandulenko2005-08-10 15:01:23 +0000
commita64f09906fd7b94ba486660590073d9a4556fcb9 (patch)
treecacb9a149bbdaa847303badd9970d2a1d4715142 /saga/palanim.cpp
parent37f2a10ef6b16320876a1339c3a46c2b74953d75 (diff)
downloadscummvm-rg350-a64f09906fd7b94ba486660590073d9a4556fcb9.tar.gz
scummvm-rg350-a64f09906fd7b94ba486660590073d9a4556fcb9.tar.bz2
scummvm-rg350-a64f09906fd7b94ba486660590073d9a4556fcb9.zip
Reanme more minor struct to comply with our naiming standards.
svn-id: r18646
Diffstat (limited to 'saga/palanim.cpp')
-rw-r--r--saga/palanim.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/palanim.cpp b/saga/palanim.cpp
index a81a31ac0a..5aa941b7b3 100644
--- a/saga/palanim.cpp
+++ b/saga/palanim.cpp
@@ -64,13 +64,13 @@ int PalAnim::loadPalAnim(const byte *resdata, size_t resdata_len) {
debug(3, "PalAnim::loadPalAnim(): Loading %d PALANIM entries.", _entryCount);
- test_p = calloc(_entryCount, sizeof(PALANIM_ENTRY));
+ test_p = calloc(_entryCount, sizeof(PalanimEntry));
if (test_p == NULL) {
warning("PalAnim::loadPalAnim(): Allocation failure");
return MEM;
}
- _entries = (PALANIM_ENTRY *)test_p;
+ _entries = (PalanimEntry *)test_p;
for (i = 0; i < _entryCount; i++) {
int color_count;