diff options
Diffstat (limited to 'macosx/plugins/PeopsXgl/macsrc')
3 files changed, 9 insertions, 9 deletions
diff --git a/macosx/plugins/PeopsXgl/macsrc/NetSfPeopsOpenGLPluginConfigController.m b/macosx/plugins/PeopsXgl/macsrc/NetSfPeopsOpenGLPluginConfigController.m index 781508be..73c85711 100644 --- a/macosx/plugins/PeopsXgl/macsrc/NetSfPeopsOpenGLPluginConfigController.m +++ b/macosx/plugins/PeopsXgl/macsrc/NetSfPeopsOpenGLPluginConfigController.m @@ -1,7 +1,7 @@ /* All the various stuff needed for configuration is done here, including reading the Config file and displaying a dialog box - AboutDlgProc() is a plug-in function called from the PCSX app, as is + AboutDlgProc() is a plug-in function called from the PCSXR app, as is DlgProc() */ @@ -74,7 +74,7 @@ void PrepFactoryDefaultPreferences(void) // THE place to find the names of settings. // If it's not here, you can't set it. - // create or read a sub-dictionary beneath the main PCSX app prefs. + // create or read a sub-dictionary beneath the main PCSXR app prefs. // dictionary is named "net.sf.GpuOpenGLPlugin Settings" // and contains all our key/values // the prefs .plist will store this dictionary ("net.sf...") as an object @@ -125,12 +125,12 @@ void PrepFactoryDefaultPreferences(void) void ReadConfig(void) { - // set up PCSX GPU plug's global variables according to user preferences. - // this is called from the PCSX GPU plugin thread via GPUOpen. + // set up PCSXR GPU plug's global variables according to user preferences. + // this is called from the PCSXR GPU plugin thread via GPUOpen. // has nothing to do with the Configuration dialog box, btw., other than the // fact that the config dialog writes to user prefs. This only reads, which - // is important because PCSX will change its globals on the fly + // is important because PCSXR will change its globals on the fly // and saving those new ad hoc changes is Bad for the user. PrepFactoryDefaultPreferences(); // in case user deletes, or on new startup @@ -139,7 +139,7 @@ void ReadConfig(void) NSDictionary* keyValues = [[NSUserDefaults standardUserDefaults] dictionaryForKey:PrefsKey]; - // bind all prefs settings to their PCSX counterparts + // bind all prefs settings to their PCSXR counterparts // with a little finagling to make it work as expected iShowFPS = [[keyValues objectForKey:@"FPS Counter"] boolValue]; diff --git a/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.h b/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.h index 9322a01f..a60a4b81 100644 --- a/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.h +++ b/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.h @@ -1,7 +1,7 @@ /*************************************************************************** PluginWindowController.h The big bad boy that controls/creates the game window, the openGLView, and - communicates with PCSX itself + communicates with PCSXR itself PeopsOpenGPU Created by Gil Pedersen on Mon April 11 2004. @@ -20,7 +20,7 @@ /* In truth, this controller should be the ONLY place that glues between the - running PCSX gpu and the mac interface. + running PCSXR gpu and the mac interface. ATM, some of the glue is here, some of it in drawgl.m, and a couple of bits are in the config controller... */ diff --git a/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.m b/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.m index 88bfa7db..0636490a 100644 --- a/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.m +++ b/macosx/plugins/PeopsXgl/macsrc/PluginWindowController.m @@ -1,7 +1,7 @@ /*************************************************************************** PluginWindowController.m The big bad boy that controls/creates the game window, the openGLView, and - communicates with PCSX itself + communicates with PCSXR itself PeopsOpenGPU |
