aboutsummaryrefslogtreecommitdiff
path: root/src/ARCodeFile.h
diff options
context:
space:
mode:
authorStraDaMa <StraDaMa@users.noreply.github.com>2023-08-27 04:34:11 -0700
committerGitHub <noreply@github.com>2023-08-27 13:34:11 +0200
commitbc71618457a2759f0fa9eda4aaade9cb4a5e5695 (patch)
treea74e4133e6b3f8984e103876467af69f6245c3d2 /src/ARCodeFile.h
parent2bd12669b25f2ce6d9dae4c0964f500572775b5d (diff)
remove AR code size limit (#1802)
Co-authored-by: Arisotura <thetotalworm@gmail.com>
Diffstat (limited to 'src/ARCodeFile.h')
-rw-r--r--src/ARCodeFile.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ARCodeFile.h b/src/ARCodeFile.h
index 9678926..d0e8255 100644
--- a/src/ARCodeFile.h
+++ b/src/ARCodeFile.h
@@ -21,15 +21,14 @@
#include <string>
#include <list>
-
+#include <vector>
#include "types.h"
struct ARCode
{
std::string Name;
bool Enabled;
- u32 CodeLen;
- u32 Code[2*64];
+ std::vector<u32> Code;
};
typedef std::list<ARCode> ARCodeList;