aboutsummaryrefslogtreecommitdiff
path: root/sword2/resman.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-02-21 08:16:50 +0000
committerTorbjörn Andersson2005-02-21 08:16:50 +0000
commit8edce85e04a75907e668db286818ad868e3feed2 (patch)
treef594c90a1ab17231a4d1293fcd993466bf9eb5e9 /sword2/resman.h
parent224e0b7aa48ba8c5a68b4c8fa89e45a0cb5899c4 (diff)
downloadscummvm-rg350-8edce85e04a75907e668db286818ad868e3feed2.tar.gz
scummvm-rg350-8edce85e04a75907e668db286818ad868e3feed2.tar.bz2
scummvm-rg350-8edce85e04a75907e668db286818ad868e3feed2.zip
Some cleanup and renaming. (It was confusing to see "load" sometimes and
"restore" other times.) The save/restore dialog now has two separate classes, though they both inherit from the old combined class of course. svn-id: r16848
Diffstat (limited to 'sword2/resman.h')
-rw-r--r--sword2/resman.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword2/resman.h b/sword2/resman.h
index 990e7f54eb..aca64e9627 100644
--- a/sword2/resman.h
+++ b/sword2/resman.h
@@ -26,7 +26,7 @@ class File;
namespace Sword2 {
#define MAX_MEM_CACHE (8 * 1024 * 1024) // we keep up to 8 megs of resource data files in memory
-#define MAX_res_files 20
+#define MAX_res_files 20
class Sword2Engine;
@@ -90,7 +90,7 @@ private:
ResourceFile _resFiles[MAX_res_files];
Resource *_resList;
- Resource *_cacheStart, *_cacheEnd;
+ Resource *_cacheStart, *_cacheEnd;
uint32 _usedMem; // amount of used memory in bytes
};