Oops, a few settings changes I forgot in the last commit.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2874 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2014-03-12 17:00:52 +00:00
parent bc9e50f0f1
commit 18a467062a
6 changed files with 5 additions and 12 deletions

View File

@ -17,8 +17,6 @@
// $Id$
//============================================================================
#include "bspf.hxx"
#include "Settings.hxx"
#include "SettingsMACOSX.hxx"
extern "C" {

View File

@ -44,16 +44,15 @@ class SettingsMACOSX : public Settings
virtual ~SettingsMACOSX();
public:
/**
This method should be called to load the current settings from the
standard Mac preferences.
standard Mac preferences.
*/
void loadConfig();
/**
This method should be called to save the current settings to the
standard Mac preferences.
standard Mac preferences.
*/
void saveConfig();
};

View File

@ -17,8 +17,6 @@
// $Id$
//============================================================================
#include "bspf.hxx"
#include "Settings.hxx"
#include "SettingsUNIX.hxx"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -22,7 +22,7 @@
class OSystem;
#include "bspf.hxx"
#include "Settings.hxx"
/**
This class defines UNIX-like OS's (Linux) system specific settings.

View File

@ -17,15 +17,13 @@
// $Id$
//============================================================================
#include "bspf.hxx"
#include "Settings.hxx"
#include "SettingsWINDOWS.hxx"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SettingsWINDOWS::SettingsWINDOWS(OSystem* osystem)
: Settings(osystem)
{
setInternal("fragsize", "512");
setInternal("fragsize", "1024");
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -22,7 +22,7 @@
class OSystem;
#include "bspf.hxx"
#include "Settings.hxx"
class SettingsWINDOWS : public Settings
{