summaryrefslogtreecommitdiff
path: root/cheats.h
diff options
context:
space:
mode:
authornotaz2011-09-05 19:31:58 +0300
committernotaz2011-09-06 00:18:06 +0300
commitbbba320911a86c0ee373f8297f80a2b82de22039 (patch)
tree3b1320f78cade24ed84ae48e565445c239765f45 /cheats.h
parenteb3668fc5dab138073cd4844208ac05b94086a4a (diff)
downloadpicogpsp-bbba320911a86c0ee373f8297f80a2b82de22039.tar.gz
picogpsp-bbba320911a86c0ee373f8297f80a2b82de22039.tar.bz2
picogpsp-bbba320911a86c0ee373f8297f80a2b82de22039.zip
enable -Wall and fix warnings reported by it
Diffstat (limited to 'cheats.h')
-rw-r--r--cheats.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cheats.h b/cheats.h
index 65b46ae..bb06e2d 100644
--- a/cheats.h
+++ b/cheats.h
@@ -28,7 +28,7 @@ typedef enum
typedef struct
{
- u8 cheat_name[CHEAT_NAME_LENGTH];
+ char cheat_name[CHEAT_NAME_LENGTH];
u32 cheat_active;
u32 cheat_codes[256];
u32 num_cheat_lines;
@@ -36,7 +36,7 @@ typedef struct
} cheat_type;
void process_cheats();
-void add_cheats(u8 *cheats_filename);
+void add_cheats(char *cheats_filename);
#define MAX_CHEATS 16