mirror of
https://github.com/love2d/love.git
synced 2026-08-18 19:54:22 +02:00
Updated CompressedData to store its data in a single block of memory, like other Data objects
This commit is contained in:
@@ -36,14 +36,14 @@ class CompressedData : public love::image::CompressedData
|
||||
{
|
||||
public:
|
||||
|
||||
CompressedData(love::filesystem::FileData *data);
|
||||
CompressedData(love::filesystem::FileData *filedata);
|
||||
virtual ~CompressedData();
|
||||
|
||||
static bool isCompressed(love::filesystem::FileData *data);
|
||||
static bool isCompressed(love::filesystem::FileData *filedata);
|
||||
|
||||
private:
|
||||
|
||||
void load(love::filesystem::FileData *data);
|
||||
void load(love::filesystem::FileData *filedata);
|
||||
|
||||
}; // CompressedData
|
||||
|
||||
|
||||
Reference in New Issue
Block a user