diff options
| author | Eugene Sandulenko | 2006-05-09 14:16:43 +0000 |
|---|---|---|
| committer | Eugene Sandulenko | 2006-05-09 14:16:43 +0000 |
| commit | d2546e397934da3e89fdd994e0c620dd0bcfbcd4 (patch) | |
| tree | 8e7371097f7421496d6ea24ceaff6feeab7185d1 /base | |
| parent | 4c6712246368148c91861fd30677a461e57e698b (diff) | |
| download | scummvm-rg350-d2546e397934da3e89fdd994e0c620dd0bcfbcd4.tar.gz scummvm-rg350-d2546e397934da3e89fdd994e0c620dd0bcfbcd4.tar.bz2 scummvm-rg350-d2546e397934da3e89fdd994e0c620dd0bcfbcd4.zip | |
- Updated MSVC8 project files
- Renamed base/options.cpp to base/commandLine.cpp because of conflict
with gui/options.cpp which sit in same directory in MSVC builds
- Moved AudioCDManager singleton declaration outside of Audio namespace
- Fixed numerous MSVC warning of potentially uninitialized variables and
int <-> bool conversions.
svn-id: r22397
Diffstat (limited to 'base')
| -rw-r--r-- | base/commandLine.cpp (renamed from base/options.cpp) | 2 | ||||
| -rw-r--r-- | base/commandLine.h (renamed from base/options.h) | 0 | ||||
| -rw-r--r-- | base/main.cpp | 2 | ||||
| -rw-r--r-- | base/module.mk | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/base/options.cpp b/base/commandLine.cpp index e01621af0a..2dec1703f5 100644 --- a/base/options.cpp +++ b/base/commandLine.cpp @@ -24,7 +24,7 @@ #include "common/stdafx.h" #include "base/engine.h" -#include "base/options.h" +#include "base/commandLine.h" #include "base/plugins.h" #include "base/version.h" diff --git a/base/options.h b/base/commandLine.h index dbf1776c74..dbf1776c74 100644 --- a/base/options.h +++ b/base/commandLine.h diff --git a/base/main.cpp b/base/main.cpp index c5f646c7a4..292b57afdd 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -32,7 +32,7 @@ #include "common/stdafx.h" #include "backends/fs/fs.h" #include "base/engine.h" -#include "base/options.h" +#include "base/commandLine.h" #include "base/plugins.h" #include "base/version.h" #include "common/config-manager.h" diff --git a/base/module.mk b/base/module.mk index 5af0e1349c..3a515b4f5c 100644 --- a/base/module.mk +++ b/base/module.mk @@ -3,7 +3,7 @@ MODULE := base MODULE_OBJS := \ engine.o \ main.o \ - options.o \ + commandLine.o \ plugins.o \ version.o |
