aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/resource.h')
-rw-r--r--engines/kyra/resource.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/resource.h b/engines/kyra/resource.h
index 702f6a7d35..d8fca843bb 100644
--- a/engines/kyra/resource.h
+++ b/engines/kyra/resource.h
@@ -36,7 +36,7 @@ namespace Kyra {
// standard Package format for Kyrandia games
class PAKFile {
struct PakChunk {
- char* _name;
+ char _name[32];
uint32 _start;
uint32 _size;
};
@@ -58,7 +58,7 @@ private:
bool _open;
bool _isAmiga;
char *_filename;
- Common::List<PakChunk*> _files; // the entries
+ Common::List<PakChunk> _files; // the entries
};
class Resource {