aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ds/arm9/source/zipreader.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/ds/arm9/source/zipreader.h')
-rw-r--r--backends/platform/ds/arm9/source/zipreader.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/backends/platform/ds/arm9/source/zipreader.h b/backends/platform/ds/arm9/source/zipreader.h
index cd7244dba5..d1f70942ce 100644
--- a/backends/platform/ds/arm9/source/zipreader.h
+++ b/backends/platform/ds/arm9/source/zipreader.h
@@ -52,14 +52,13 @@ class ZipFile {
public:
ZipFile();
- ~ZipFile();
bool isReady();
// These operations set the current file
bool restartFile();
bool skipFile();
- bool findFile(char* search);
+ bool findFile(const char *search);
// These return the file's data and information
char* getFile();
@@ -68,15 +67,11 @@ public:
bool isDirectory();
// These set the current directory
- void changeDirectory(char* name);
+ void changeDirectory(const char* name);
void changeToRoot();
void setAllFilesVisible(bool state) { _allFilesVisible = state; }
bool currentFileInFolder();
-
- u16 misaligned16(u16* v);
- u32 misaligned32(u32* v);
-
};