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
|
||||
- ARM7: Fix Thumb MUL timing
|
||||
- Qt: Cap the maximum number of multiplayer windows
|
||||
- Qt: Fix maximum year in sensor override
|
||||
Misc:
|
||||
- Qt: Handle saving input settings better
|
||||
- Debugger: Free watchpoints in addition to breakpoints
|
||||
|
|
|
@ -78,9 +78,9 @@
|
|||
</property>
|
||||
<property name="maximumDate">
|
||||
<date>
|
||||
<year>2100</year>
|
||||
<month>1</month>
|
||||
<day>6</day>
|
||||
<year>2099</year>
|
||||
<month>12</month>
|
||||
<day>31</day>
|
||||
</date>
|
||||
</property>
|
||||
<property name="minimumDate">
|
||||
|
|
Loading…
Reference in New Issue