diff options
author | Max Horn | 2009-05-30 20:37:33 +0000 |
---|---|---|
committer | Max Horn | 2009-05-30 20:37:33 +0000 |
commit | 70a04c8b51af66fcc30b5b22fad224d0f145a484 (patch) | |
tree | 85079d57325d352ff7567cd37392abf119e25b47 /engines/sci/sfx | |
parent | 539094d5a81fdb20e61a7a562ea7bbaed9c54e5f (diff) | |
download | scummvm-rg350-70a04c8b51af66fcc30b5b22fad224d0f145a484.tar.gz scummvm-rg350-70a04c8b51af66fcc30b5b22fad224d0f145a484.tar.bz2 scummvm-rg350-70a04c8b51af66fcc30b5b22fad224d0f145a484.zip |
SCI: Made vocab_version static again (a global static var is bad, but a really global var is worse); also clarified some FIXME comments that we want to avoid *any* non-const global var, no matter whether it is static or not
svn-id: r41045
Diffstat (limited to 'engines/sci/sfx')
-rw-r--r-- | engines/sci/sfx/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sfx/core.cpp b/engines/sci/sfx/core.cpp index 96ad6fa34a..eadacdb5c9 100644 --- a/engines/sci/sfx/core.cpp +++ b/engines/sci/sfx/core.cpp @@ -44,7 +44,7 @@ namespace Sci { class SfxPlayer; -SfxPlayer *player = NULL; // FIXME: Avoid static vars +SfxPlayer *player = NULL; // FIXME: Avoid non-cpnst global vars #pragma mark - |