Remove unused stored extension in Decoder

As preparation for issue #1487
This commit is contained in:
Bart van Strien
2019-05-04 10:44:41 +02:00
parent 372a55c6ac
commit bf5e3820bd
17 changed files with 37 additions and 41 deletions
+1 -4
View File
@@ -41,7 +41,7 @@ public:
static love::Type type;
Decoder(Data *data, const std::string &ext, int bufferSize);
Decoder(Data *data, int bufferSize);
virtual ~Decoder();
/**
@@ -149,9 +149,6 @@ protected:
// reads in the future.
StrongRef<Data> data;
// File extension.
std::string ext;
// When the decoder decodes data incrementally, it writes
// this many bytes at a time (at most).
int bufferSize;