remove AR code size limit (#1802)

Co-authored-by: Arisotura <thetotalworm@gmail.com>
This commit is contained in:
StraDaMa
2023-08-27 04:34:11 -07:00
committed by GitHub
parent 2bd12669b2
commit bc71618457
4 changed files with 14 additions and 32 deletions

View File

@ -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;