diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-02-12 04:54:35 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-02-12 04:54:35 +0000 |
| commit | b547f4aca10c928bf7fe6a4c519cb7981547d00e (patch) | |
| tree | fb36c335175ed7628454ebaacd273f585338e6a2 /plugins | |
| parent | 0d0c354caca3db41fec09e3ea471d31a2b7692be (diff) | |
| download | pcsxr-b547f4aca10c928bf7fe6a4c519cb7981547d00e.tar.gz | |
-peopsxgl: fixed "Use Game Fixes" in config dialog.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@63285 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/peopsxgl/gpucfg/main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/peopsxgl/gpucfg/main.c b/plugins/peopsxgl/gpucfg/main.c index f9dbdeef..521d02c4 100644 --- a/plugins/peopsxgl/gpucfg/main.c +++ b/plugins/peopsxgl/gpucfg/main.c @@ -667,6 +667,18 @@ int main( int argc, char **argv ) { val = 0; if ( pB ) { + strcpy( t, "\nUseFixes" ); + p = strstr( pB, t ); + if ( p ) { + p = strstr( p, "=" ); + len = 1; + val = atoi( p + len ); + } + } + gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( chkUseGameFixes ), val ); + + val = 0; + if ( pB ) { strcpy( t, "\nCfgFixes" ); p = strstr( pB, t ); if ( p ) { |
