mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
MemoryWidget: Simplify the search logic
Fix leading nul bytes being ignored in hex search
This commit is contained in:
@ -5,6 +5,7 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <QByteArray>
|
||||
#include <QDockWidget>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
@ -56,7 +57,8 @@ private:
|
||||
void OnDumpARAM();
|
||||
void OnDumpFakeVMEM();
|
||||
|
||||
std::vector<u8> GetValueData() const;
|
||||
bool IsValueValid() const;
|
||||
QByteArray GetValueData() const;
|
||||
|
||||
void FindValue(bool next);
|
||||
|
||||
|
Reference in New Issue
Block a user