Use automatic allocation for patch RPN

This commit is contained in:
Rangi42
2024-02-22 15:56:45 -05:00
committed by Sylvie
parent dec1811d20
commit 1b8e588961
2 changed files with 10 additions and 34 deletions

View File

@@ -23,8 +23,7 @@ struct Patch {
struct Section *pcSection;
uint32_t pcOffset;
uint8_t type;
uint32_t rpnSize;
uint8_t *rpn;
std::vector<uint8_t> rpn;
};
struct Section {