mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-21 05:09:46 -06:00
remove AR code size limit (#1802)
Co-authored-by: Arisotura <thetotalworm@gmail.com>
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user