mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-03-06 14:27:44 +00:00
Qt/CheatManager: Default to unsigned/hex/halfword
This commit is contained in:
parent
ca61f989fc
commit
076a2ca307
|
@ -233,12 +233,12 @@ private:
|
||||||
void SearchWords();
|
void SearchWords();
|
||||||
|
|
||||||
u32 m_value = 0;
|
u32 m_value = 0;
|
||||||
MemoryAccessSize m_size = MemoryAccessSize::Word;
|
MemoryAccessSize m_size = MemoryAccessSize::HalfWord;
|
||||||
Operator m_operator = Operator::Equal;
|
Operator m_operator = Operator::Equal;
|
||||||
PhysicalMemoryAddress m_start_address = 0;
|
PhysicalMemoryAddress m_start_address = 0;
|
||||||
PhysicalMemoryAddress m_end_address = 0x200000;
|
PhysicalMemoryAddress m_end_address = 0x200000;
|
||||||
ResultVector m_results;
|
ResultVector m_results;
|
||||||
bool m_signed = true;
|
bool m_signed = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
class MemoryWatchList
|
class MemoryWatchList
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>0</number>
|
<number>1</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="tab">
|
<widget class="QWidget" name="tab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
|
@ -202,6 +202,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="scanValueSigned">
|
<widget class="QComboBox" name="scanValueSigned">
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Signed</string>
|
<string>Signed</string>
|
||||||
|
@ -216,6 +219,9 @@
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QComboBox" name="scanValueBase">
|
<widget class="QComboBox" name="scanValueBase">
|
||||||
|
<property name="currentIndex">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Decimal</string>
|
<string>Decimal</string>
|
||||||
|
@ -240,7 +246,7 @@
|
||||||
<item row="2" column="1">
|
<item row="2" column="1">
|
||||||
<widget class="QComboBox" name="scanSize">
|
<widget class="QComboBox" name="scanSize">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>2</number>
|
<number>1</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|
Loading…
Reference in a new issue