ux: Added support for mathematical expressions in goto fields

This commit is contained in:
WerWolv
2022-03-22 09:06:02 +01:00
parent f7cfee55d5
commit ea848dbfc0
2 changed files with 67 additions and 29 deletions

View File

@@ -51,9 +51,9 @@ namespace hex::plugin::builtin {
std::vector<std::pair<u64, u64>> m_lastStringSearch;
std::vector<std::pair<u64, u64>> m_lastHexSearch;
u64 m_gotoAddressAbsolute = 0;
i64 m_gotoAddressRelative = 0;
bool m_gotoRequested = false;
std::string m_gotoAddressInput;
bool m_gotoRequested = false;
bool m_evaluateGoto = false;
u64 m_baseAddress = 0;
u64 m_resizeSize = 0;