| 98 | } |
| 99 | |
| 100 | std::string MemoryPatch::get_PatchBytes() const |
| 101 | { |
| 102 | if (!isValid()) |
| 103 | return ""; |
| 104 | |
| 105 | return KittyUtils::Data::toHex(&_patch_code[0], _patch_code.size()); |
| 106 | } |
| 107 | |
| 108 | /* ============================== MemoryPatchMgr ============================== */ |
| 109 |