mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix maximum year in sensor override
This commit is contained in:
parent
d135fd6a63
commit
041b58ebce
1
CHANGES
1
CHANGES
|
@ -32,6 +32,7 @@ Bugfixes:
|
||||||
- Qt: Fix open ROM dialog filtering for archive formats
|
- Qt: Fix open ROM dialog filtering for archive formats
|
||||||
- ARM7: Fix Thumb MUL timing
|
- ARM7: Fix Thumb MUL timing
|
||||||
- Qt: Cap the maximum number of multiplayer windows
|
- Qt: Cap the maximum number of multiplayer windows
|
||||||
|
- Qt: Fix maximum year in sensor override
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Handle saving input settings better
|
- Qt: Handle saving input settings better
|
||||||
- Debugger: Free watchpoints in addition to breakpoints
|
- Debugger: Free watchpoints in addition to breakpoints
|
||||||
|
|
|
@ -78,9 +78,9 @@
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumDate">
|
<property name="maximumDate">
|
||||||
<date>
|
<date>
|
||||||
<year>2100</year>
|
<year>2099</year>
|
||||||
<month>1</month>
|
<month>12</month>
|
||||||
<day>6</day>
|
<day>31</day>
|
||||||
</date>
|
</date>
|
||||||
</property>
|
</property>
|
||||||
<property name="minimumDate">
|
<property name="minimumDate">
|
||||||
|
|
Loading…
Reference in New Issue