From 18a467062af914853ea5053fe8082bc116a49d09 Mon Sep 17 00:00:00 2001 From: stephena Date: Wed, 12 Mar 2014 17:00:52 +0000 Subject: [PATCH] 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 --- src/macosx/SettingsMACOSX.cxx | 2 -- src/macosx/SettingsMACOSX.hxx | 5 ++--- src/unix/SettingsUNIX.cxx | 2 -- src/unix/SettingsUNIX.hxx | 2 +- src/windows/SettingsWINDOWS.cxx | 4 +--- src/windows/SettingsWINDOWS.hxx | 2 +- 6 files changed, 5 insertions(+), 12 deletions(-) diff --git a/src/macosx/SettingsMACOSX.cxx b/src/macosx/SettingsMACOSX.cxx index 660140d19..5fc9d64d5 100644 --- a/src/macosx/SettingsMACOSX.cxx +++ b/src/macosx/SettingsMACOSX.cxx @@ -17,8 +17,6 @@ // $Id$ //============================================================================ -#include "bspf.hxx" -#include "Settings.hxx" #include "SettingsMACOSX.hxx" extern "C" { diff --git a/src/macosx/SettingsMACOSX.hxx b/src/macosx/SettingsMACOSX.hxx index af92c38fd..8f3e9b6a1 100644 --- a/src/macosx/SettingsMACOSX.hxx +++ b/src/macosx/SettingsMACOSX.hxx @@ -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(); }; diff --git a/src/unix/SettingsUNIX.cxx b/src/unix/SettingsUNIX.cxx index c0efcc99c..6dbf257c9 100644 --- a/src/unix/SettingsUNIX.cxx +++ b/src/unix/SettingsUNIX.cxx @@ -17,8 +17,6 @@ // $Id$ //============================================================================ -#include "bspf.hxx" -#include "Settings.hxx" #include "SettingsUNIX.hxx" // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/unix/SettingsUNIX.hxx b/src/unix/SettingsUNIX.hxx index 3a960a8d2..6ee549d34 100644 --- a/src/unix/SettingsUNIX.hxx +++ b/src/unix/SettingsUNIX.hxx @@ -22,7 +22,7 @@ class OSystem; -#include "bspf.hxx" +#include "Settings.hxx" /** This class defines UNIX-like OS's (Linux) system specific settings. diff --git a/src/windows/SettingsWINDOWS.cxx b/src/windows/SettingsWINDOWS.cxx index cab85379c..45927c694 100644 --- a/src/windows/SettingsWINDOWS.cxx +++ b/src/windows/SettingsWINDOWS.cxx @@ -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"); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/windows/SettingsWINDOWS.hxx b/src/windows/SettingsWINDOWS.hxx index 716067412..46075e868 100644 --- a/src/windows/SettingsWINDOWS.hxx +++ b/src/windows/SettingsWINDOWS.hxx @@ -22,7 +22,7 @@ class OSystem; -#include "bspf.hxx" +#include "Settings.hxx" class SettingsWINDOWS : public Settings {