diff options
author | Henrik "Henke37" Andersson | 2019-10-10 04:47:32 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-10-11 18:10:46 +0200 |
commit | b62b3ab8598d7243131c5da853331050ae6d204b (patch) | |
tree | e278e2c611bdc8513c50da03d2a1402652d26a0a /engines/hdb | |
parent | 1d9e7568fdd827024e6c458d30950e94968a830b (diff) | |
download | scummvm-rg350-b62b3ab8598d7243131c5da853331050ae6d204b.tar.gz scummvm-rg350-b62b3ab8598d7243131c5da853331050ae6d204b.tar.bz2 scummvm-rg350-b62b3ab8598d7243131c5da853331050ae6d204b.zip |
HDB: No need to restate that member functions are indeed part of the class.
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/sound.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h index accdbff8fd..ebddcb1692 100644 --- a/engines/hdb/sound.h +++ b/engines/hdb/sound.h @@ -1474,8 +1474,8 @@ struct Song { void update(); private: - static Common::String Song::getFileName(SoundType song); - Audio::AudioStream* Song::createStream(Common::String fileName); + static Common::String getFileName(SoundType song); + Audio::AudioStream* createStream(Common::String fileName); Audio::SoundHandle handle; |