summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilemcache.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-12-29 02:07:18 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-12-29 02:07:18 +0100
commitd74c999e13a044fd7774bee8f9cc69887217bd91 (patch)
treeb42d1ba2ea5e20d7d4eddd1a976bae99dfbc9540 /crawl-ref/source/tilemcache.h
parent765af0c3a705afef9bb23b8170a9e0e5713cd23c (diff)
downloadcrawl-ref-d74c999e13a044fd7774bee8f9cc69887217bd91.tar.gz
crawl-ref-d74c999e13a044fd7774bee8f9cc69887217bd91.zip
Don't read the mcache in any case; drop unmarshalling code.
It was read only to be immediately dropped, this would be important if there'd be any valuable data in the chunk after it but it happens that there is nothing relevant.
Diffstat (limited to 'crawl-ref/source/tilemcache.h')
-rw-r--r--crawl-ref/source/tilemcache.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/crawl-ref/source/tilemcache.h b/crawl-ref/source/tilemcache.h
index 3ea091e860..9807f4d9fa 100644
--- a/crawl-ref/source/tilemcache.h
+++ b/crawl-ref/source/tilemcache.h
@@ -55,9 +55,6 @@ public:
virtual bool transparent() const { return false; }
protected:
-#if TAG_MAJOR_VERSION == 32
- mcache_entry(reader &th);
-#endif
// ref count in backstore
int m_ref_count;
@@ -74,9 +71,6 @@ public:
void clear_nonref();
void clear_all();
-#if TAG_MAJOR_VERSION == 32
- void read(reader &th);
-#endif
bool empty() { return m_entries.empty(); }
protected: