Commit Graph

5238 Commits (11be9c149801dbdfdf7980b8b7635ad585335691)
 

Author SHA1 Message Date
Connor McLaughlin 461e6aa50b GPU: Update display on reset 4 years ago
Connor McLaughlin 75e9506803 System: Get rid of double GPU reset 4 years ago
Connor McLaughlin 628dc36e77 GPU: Add GPU::GetFullDisplayResolution() 4 years ago
Connor McLaughlin a44e9d16fb CDROM: Fix second response event getting lost on state load 4 years ago
Connor McLaughlin 4848c72466 GameDB: Actually fix SLES-00107 4 years ago
Connor McLaughlin 123322840e
Merge pull request #2549 from andercard0/patch-7
Turkish localization update
4 years ago
Connor McLaughlin 2bb43ffac7
Merge pull request #2547 from PugsyMAME/master
New F6 Cheat Type (IF,ELSE IF, ELSE structure)
4 years ago
Connor McLaughlin f85387345e PGXP: Fix memory past 2MB 4 years ago
Connor McLaughlin 95ccf82ff6 GameDB: Fix SLES-00107 4 years ago
Anderson_Cardoso 73c0382bf6
Turkish localization update
Updated file to the latest.
4 years ago
PugsyMAME 0ebb791323
New F6 Cheat Type (IF,ELSE IF, ELSE structure)
Cheat Type F6 lets you perform cheats in IF / ELSE IF / ELSE constructs along 
with multiple conditions for each one.

It supports conditions  D0, D1, D2, D3, E0, E1, E2, E3, A0, A1, A2, A3, D7 and 
two new types that will only be available in the F6 conditions :- 
E4 & E5 which are bit comparisons on bytes (set and clear). 

Any of those types which are "block conditionals" like D7 will be treated as a 
single condition with the other conditions so you wont need to worry about 
extra 00000000 FFFFs just for them (infact you can drop them completely apart
from the last 00000000 FFFF, which you can also drop if you have no trailing
cheat lines after the end of the construct.


#IF / ELSE IF / ELSE Statement Example with Notes
80001000 00000001   Setup Test Condition 1
80001004 00000002   Setup Test Condition 2
80001008 00000003   Setup Test Condition 3
8000100C 00000004   Setup Test Condition 4

                    1F = IF, last two digits determine the number of conditions to check
                    F600000x  x = 0 All conditions must be true, x = 1 At least One condition must be true                  
F6000000 1F000004   Check the next 4 lines as the conditions for the IF loop to be taken

D0001000 00000001  )
D0001004 00000002  )Conditions
D0001008 00000003  )
D000100C 00000004  )

80001010 00005555    Poke(s)
00000000 0000FFFF  End of IF Statement

F6000000 E15E1F02  E15E1F = ELSE IF (same format as IF) - Can have multiple ELSE IF Blocks or none at all
D0001008 00000003  )
D000100C 00000005  )Conditions
80001010 00008888     Poke(s)
00000000 0000FFFF  End of ELSE IF Statement 

F6000000 E15E0000  E15E = ELSE (no need for conditions - this will poke if the others dont)
80001010 0000AAAA    Poke(s)
00000000 0000FFFF End of ELSE Statement



#Multiple Test Using Joypad Left Thumb Directions, Look at Address 1100 in Debugger
F6000000 1F000001  
D7020002 00100000
90001100 50205055
90001104 53534552 
90001108 20204445
9000110C 20202020
F6000000 E15E1F01
D7020002 00400000
90001100 4E574F44
90001104 45525020
90001108 44455353
9000110C 20202020
F6000000 E15E1F01
D7020002 00800000
90001100 5446454C
90001104 45525020
90001108 44455353
9000110C 20202020
F6000000 E15E1F01
D7020002 00200000
90001100 48474952
90001104 52502054
90001108 45535345
9000110C 20202044
F6000000 E15E0000
90001100 20202020
90001104 20202020
90001108 20202020
9000110C 20202020
00000000 0000FFFF
4 years ago
Connor McLaughlin abe9c0d438 GameList: Use display name for exe/psf titles 4 years ago
Connor McLaughlin 7eceee6a20 CDImage: Use display name for playlist titles 4 years ago
Connor McLaughlin 1081c132cf Qt: Fix 8MB game setting not being tristate 4 years ago
shikulja 6015cce47d
Update Russian translation (#2517)
* Update Russian translation

Cleaning up old translation strings, minor fixes

* Update Russian translation

* Update Russian translation

* Update Russian translation

* Update Russian translation

* Update Russian translation

* Upgrade Russian translation

* Upgrade Russian translation

lowercase
4 years ago
Connor McLaughlin 903f3247be
Merge pull request #2538 from CookiePLMonster/fix-32bit-cheats
Fix A0, A1, A2, A3 cheats
4 years ago
Silent ebe862561d
Fix A0, A1, A2, A3 cheats 4 years ago
Connor McLaughlin 3bf69ef3bb Extras: Sync translation xml 4 years ago
Connor McLaughlin 18241978ea CDROM: Cancel command second response when queuing new command
Fixes Wipeout corrupting parts of the TOC.
4 years ago
Connor McLaughlin e45f15ef41 FileSystem: Implement StatFile/FileExists/DirectoryExists for scoped storage 4 years ago
Connor McLaughlin 1d790c9eb7 Qt: Load base translation files 4 years ago
Connor McLaughlin 74bf021c2f MSBuild: Copy base translation files 4 years ago
Connor McLaughlin 15b1420246 Qt: Recreate main window/children when changing themes 4 years ago
Connor McLaughlin 35bb20e586 Qt: Enable switching of languages without restarting app 4 years ago
Connor McLaughlin 47f85dc453 Qt: Add function to recreate the main window 4 years ago
Connor McLaughlin 971af2cb5c Qt: Set style after creating game list
Fixes incorrect sizes on Linux.
4 years ago
Connor McLaughlin 3dfbb3aa7a
Merge pull request #2508 from andercard0/patch-6
Atualização Português do Brasil
4 years ago
Connor McLaughlin 2794420701
Merge pull request #2509 from zkdpower/master
Update Simple-Chinese Translation to latest.
4 years ago
zkdpower 194ff9dad3
Update Simple-Chinese Translation to latest.
Update Simple-Chinese Translation to latest.
4 years ago
Anderson_Cardoso ec42a11436
Atualização Português do Brasil
Updated file to latest.
4 years ago
Connor McLaughlin 64abbd6482 Qt: Fix change disc icon 4 years ago
Connor McLaughlin f2909b447b Qt: Split icon theme and style init 4 years ago
Connor McLaughlin e87761b9e6 Qt: Add icons by @andercard0 4 years ago
Connor McLaughlin 3236917479 HostInterface: Enable 8MB RAM should be disabled by all enhancements 4 years ago
Connor McLaughlin 521d20bcd2 CommonHostInterface: Add display enhancement settings option 4 years ago
Connor McLaughlin 78c92a3bf7 fixup! NoGUI: Move default quick menu bind out of CommonHostInterface 4 years ago
Connor McLaughlin bba6ad4a84 CommonHostInterface: Remove EnumerateOSDMessages() 4 years ago
Connor McLaughlin e6ea6358a0 CommonHostInterface: De-duplicate OSD messages from FS UI 4 years ago
Connor McLaughlin 4d9aa5ecdf CommonHostInterface: De-duplicate stats overlay from FS UI 4 years ago
Connor McLaughlin 1ee3882afd HostInterface: Default show status indicators to true 4 years ago
Connor McLaughlin 0491c893d9 HostInterface: Fix compile error on Android 32-bit 4 years ago
Connor McLaughlin eaad87ab4f CommonHostInterface: Make timer resolution increased static 4 years ago
Connor McLaughlin 28d3c0768a NoGUI: Move default quick menu bind out of CommonHostInterface 4 years ago
Connor McLaughlin 27465c5258 Qt: Re-render display after pausing 4 years ago
Connor McLaughlin 1007d4bb07
Merge pull request #2503 from andercard0/patch-5
Atualização Português do Brasil
4 years ago
Connor McLaughlin bf8910f7af
Merge pull request #2506 from zkdpower/master
Update Simple-Chinese Translation to latest.
4 years ago
zkdpower 4eb78290b7
Update Simple-Chinese Translation to latest.
Update Simple-Chinese Translation to latest.
4 years ago
Anderson_Cardoso 6cf1141cc8
Atualização Português do Brasil
Updated file to latest.
4 years ago
Connor McLaughlin 929aa2f3d1 OpenGLHostDisplay: Fix 16-bit display on GLES2 4 years ago
Connor McLaughlin f0cb8cdc5c GL/Texture: Don't set max level on GLES2 4 years ago