Use std::vector for RPN expressions

This commit is contained in:
Rangi42
2024-02-24 12:12:19 -05:00
committed by Sylvie
parent d792ee4b61
commit 5075ac8887
4 changed files with 39 additions and 65 deletions

View File

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