diff options
author | Oliver Kiehl | 2003-10-26 15:58:49 +0000 |
---|---|---|
committer | Oliver Kiehl | 2003-10-26 15:58:49 +0000 |
commit | c86803c0c7ce636b4e3469552db100ba7303d526 (patch) | |
tree | 51629b743fa1089071a104df0fd4e407fc4450c5 | |
parent | 7c4cc25cec714073d947e6451b4bf76cd53624ef (diff) | |
download | scummvm-rg350-c86803c0c7ce636b4e3469552db100ba7303d526.tar.gz scummvm-rg350-c86803c0c7ce636b4e3469552db100ba7303d526.tar.bz2 scummvm-rg350-c86803c0c7ce636b4e3469552db100ba7303d526.zip |
fix compile
svn-id: r10979
-rw-r--r-- | base/plugins.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index 84e78f49e9..3b9616733e 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -107,7 +107,7 @@ class DynamicPlugin : public Plugin { public: DynamicPlugin(const char *filename) - : _dlHandle(0), _filename(filename), _ef(0), _df(0), _games(0) {} + : _dlHandle(0), _filename(filename), _ef(0), _df(0), _games() {} const char *getName() const { return _name.c_str(); } |