From 145edf0b946c3288732543a2f45956bf77af1cb5 Mon Sep 17 00:00:00 2001 From: athrxx Date: Mon, 15 Apr 2019 16:34:07 +0200 Subject: KYRA: sound files/classes reorganization step #5 Rename some sound classes to reflect the recent file renamings. --- engines/kyra/engine/kyra_v1.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/kyra/engine/kyra_v1.cpp') diff --git a/engines/kyra/engine/kyra_v1.cpp b/engines/kyra/engine/kyra_v1.cpp index e2896eb1a5..7b93851d8f 100644 --- a/engines/kyra/engine/kyra_v1.cpp +++ b/engines/kyra/engine/kyra_v1.cpp @@ -99,16 +99,16 @@ Common::Error KyraEngine_v1::init() { if (!_flags.useDigSound) { if (_flags.platform == Common::kPlatformFMTowns) { if (_flags.gameID == GI_KYRA1) - _sound = new SoundTowns(this, _mixer); + _sound = new SoundTowns_LoK(this, _mixer); else _sound = new SoundTownsPC98_v2(this, _mixer); } else if (_flags.platform == Common::kPlatformPC98) { if (_flags.gameID == GI_KYRA1) - _sound = new SoundPC98(this, _mixer); + _sound = new SoundPC98_LoK(this, _mixer); else _sound = new SoundTownsPC98_v2(this, _mixer); } else if (_flags.platform == Common::kPlatformAmiga) { - _sound = new SoundAmiga(this, _mixer); + _sound = new SoundAmiga_LoK(this, _mixer); } else { // In Kyra 1 users who have specified a default MT-32 device in the launcher settings // will get MT-32 music, otherwise AdLib. In Kyra 2 and LoL users who have specified a -- cgit v1.2.3