diff options
Diffstat (limited to 'engines/neverhood/modules/module1800.cpp')
-rw-r--r-- | engines/neverhood/modules/module1800.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/engines/neverhood/modules/module1800.cpp b/engines/neverhood/modules/module1800.cpp index b7371c9a4a..17d6367252 100644 --- a/engines/neverhood/modules/module1800.cpp +++ b/engines/neverhood/modules/module1800.cpp @@ -8,21 +8,22 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ -#include "neverhood/modules/module1800.h" -#include "neverhood/navigationscene.h" +#include "neverhood/diskplayerscene.h" #include "neverhood/menumodule.h" +#include "neverhood/navigationscene.h" +#include "neverhood/modules/module1800.h" namespace Neverhood { @@ -38,7 +39,7 @@ static const uint32 kModule1800SoundList[] = { Module1800::Module1800(NeverhoodEngine *vm, Module *parentModule, int which) : Module(vm, parentModule) { - + _vm->_soundMan->addSoundList(0x04A14718, kModule1800SoundList); _vm->_soundMan->setSoundListParams(kModule1800SoundList, true, 50, 600, 10, 150); _vm->_soundMan->playTwoSounds(0x04A14718, 0x8A382B55, 0x0C242F1D, 0); @@ -177,5 +178,5 @@ void Module1800::updateScene() { } } } - + } // End of namespace Neverhood |