diff options
Diffstat (limited to 'src/ARCodeFile.h')
-rw-r--r-- | src/ARCodeFile.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/ARCodeFile.h b/src/ARCodeFile.h index 374c56e..56dfff7 100644 --- a/src/ARCodeFile.h +++ b/src/ARCodeFile.h @@ -23,23 +23,21 @@ #include "types.h" -typedef struct +struct ARCode { char Name[128]; bool Enabled; u32 CodeLen; u32 Code[2*64]; - -} ARCode; +}; typedef std::list<ARCode> ARCodeList; -typedef struct +struct ARCodeCat { char Name[128]; ARCodeList Codes; - -} ARCodeCat; +}; typedef std::list<ARCodeCat> ARCodeCatList; |