summaryrefslogtreecommitdiff
path: root/ZAPD/ZDisplayList.cpp
diff options
context:
space:
mode:
authorNicholas Estelami <NEstelami@users.noreply.github.com>2021-01-01 19:33:17 -0500
committerGitHub <noreply@github.com>2021-01-01 19:33:17 -0500
commita29291d139764b251536282b3fd716ffa877e3d7 (patch)
tree7a54560af880009942410d3cbf5e01ed378e556c /ZAPD/ZDisplayList.cpp
parent1bcccef2c5a3fe0d67778e80aabff7d894ab2168 (diff)
Added in support for player animations (#40)
* Added in support for Player Animations * Fixed up a bunch of non matching issues
Diffstat (limited to 'ZAPD/ZDisplayList.cpp')
-rw-r--r--ZAPD/ZDisplayList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZDisplayList.cpp b/ZAPD/ZDisplayList.cpp
index 588f01d..cc92b86 100644
--- a/ZAPD/ZDisplayList.cpp
+++ b/ZAPD/ZDisplayList.cpp
@@ -66,7 +66,7 @@ ZDisplayList::ZDisplayList(vector<uint8_t> nRawData, int nRawDataIndex, int rawD
{
fileData = nRawData;
rawDataIndex = nRawDataIndex;
- name = StringHelper::Sprintf("dlist0x%06X", rawDataIndex);
+ name = StringHelper::Sprintf("Dlist0x%06X", rawDataIndex);
rawData = vector<uint8_t>(nRawData.data() + rawDataIndex, nRawData.data() + rawDataIndex + rawDataSize);
ParseRawData();
}