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$ // $Id$
//============================================================================ //============================================================================
#include "bspf.hxx"
#include "Settings.hxx"
#include "SettingsMACOSX.hxx" #include "SettingsMACOSX.hxx"
extern "C" { extern "C" {

View File

@ -44,7 +44,6 @@ class SettingsMACOSX : public Settings
virtual ~SettingsMACOSX(); virtual ~SettingsMACOSX();
public: public:
/** /**
This method should be called to load the current settings from the This method should be called to load the current settings from the
standard Mac preferences. standard Mac preferences.

View File

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

View File

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

View File

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

View File

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