diff options
Diffstat (limited to 'win32/gui/ConfigurePlugins.c')
| -rwxr-xr-x | win32/gui/ConfigurePlugins.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/win32/gui/ConfigurePlugins.c b/win32/gui/ConfigurePlugins.c index 7abe6119..84c7f93e 100755 --- a/win32/gui/ConfigurePlugins.c +++ b/win32/gui/ConfigurePlugins.c @@ -96,6 +96,10 @@ int LoadConfig() { QueryKeyV("PsxType", Conf->PsxType); QueryKeyV("PsxClock", Conf->PsxClock); + QueryKeyV("PGXP_GTE", Conf->PGXP_GTE); + QueryKeyV("PGXP_Cache", Conf->PGXP_Cache); + QueryKeyV("PGXP_Texture", Conf->PGXP_Texture); + if (Config.Cpu == CPU_DYNAREC) { Config.Debug = 0; // don't enable debugger if using dynarec core } @@ -158,6 +162,11 @@ void SaveConfig() { SetKeyV("PsxType", Conf->PsxType); SetKeyV("PsxClock", Conf->PsxClock); + SetKeyV("PGXP_GTE", Conf->PGXP_GTE); + SetKeyV("PGXP_Cache", Conf->PGXP_Cache); + SetKeyV("PGXP_Texture", Conf->PGXP_Texture); + + RegCloseKey(myKey); } |
