diff options
| author | Marcus Comstedt | 2006-06-03 15:34:48 +0000 |
|---|---|---|
| committer | Marcus Comstedt | 2006-06-03 15:34:48 +0000 |
| commit | 2f935da61fba565ca4eabd3ef77e6851ac1f0422 (patch) | |
| tree | 1c300ea606fc28bf93effb60182596ad2db277ae /common | |
| parent | c42e5813af470c210e87660cc0e088be3139898c (diff) | |
| download | scummvm-rg350-2f935da61fba565ca4eabd3ef77e6851ac1f0422.tar.gz scummvm-rg350-2f935da61fba565ca4eabd3ef77e6851ac1f0422.tar.bz2 scummvm-rg350-2f935da61fba565ca4eabd3ef77e6851ac1f0422.zip | |
Don't try to save settings on the Dreamcast, CD-ROM:s are read only...
svn-id: r22890
Diffstat (limited to 'common')
| -rw-r--r-- | common/config-manager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp index f4f2cb9b23..2b620f53e5 100644 --- a/common/config-manager.cpp +++ b/common/config-manager.cpp @@ -214,6 +214,7 @@ void ConfigManager::loadFile(const String &filename) { } void ConfigManager::flushToDisk() { +#ifndef __DC__ FILE *cfg_file; // TODO @@ -248,6 +249,7 @@ void ConfigManager::flushToDisk() { fclose(cfg_file); } +#endif // !__DC__ } void ConfigManager::writeDomain(FILE *file, const String &name, const Domain &domain) { |
