diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-01-03 15:53:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 15:53:23 +0000 |
commit | 83648f2d3109bf16ac6f2317ab772803af11f482 (patch) | |
tree | e8207c55c4ae052ba07713892e998ab9050e9301 /src/ARCodeFile.h | |
parent | f070eafce473c49979cfe8ec1d2dd65de9084884 (diff) | |
parent | cb58a422ac59f40825f7a7c2e9b75237eb04637d (diff) |
Merge branch 'master' into feature/zip-support
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; |