diff options
| author | Marisa-Chan | 2013-11-01 17:00:20 +0700 | 
|---|---|---|
| committer | Marisa-Chan | 2013-11-01 17:00:20 +0700 | 
| commit | 9dc0533f4f077a2a5edce902e8d93860c68c3fda (patch) | |
| tree | 0a746267a81b0caf1c77866a86c295e2994957fe /engines/zvision/scr_file_handling.cpp | |
| parent | be93d7d67dcea18532917a6c1bd6004665973f4f (diff) | |
| download | scummvm-rg350-9dc0533f4f077a2a5edce902e8d93860c68c3fda.tar.gz scummvm-rg350-9dc0533f4f077a2a5edce902e8d93860c68c3fda.tar.bz2 scummvm-rg350-9dc0533f4f077a2a5edce902e8d93860c68c3fda.zip  | |
ZVISION: Implement MusicNode and move ActionMusic to work with it.
Diffstat (limited to 'engines/zvision/scr_file_handling.cpp')
| -rw-r--r-- | engines/zvision/scr_file_handling.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/scr_file_handling.cpp b/engines/zvision/scr_file_handling.cpp index bfa1481007..0df3143a51 100644 --- a/engines/zvision/scr_file_handling.cpp +++ b/engines/zvision/scr_file_handling.cpp @@ -203,7 +203,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis  		} else if (line.matchString("*:menu_bar_enable*", true)) {  			// TODO: Implement ActionMenuBarEnable  		} else if (line.matchString("*:music*", true)) { -			actionList.push_back(new ActionMusic(_engine, line)); +			actionList.push_back(new ActionMusic(_engine, line, false));  		} else if (line.matchString("*:pan_track*", true)) {  			// TODO: Implement ActionPanTrack  		} else if (line.matchString("*:playpreload*", true)) { @@ -239,7 +239,7 @@ void ScriptManager::parseResults(Common::SeekableReadStream &stream, Common::Lis  		} else if (line.matchString("*:ttytext*", true)) {  			// TODO: Implement ActionTTYText  		} else if (line.matchString("*:universe_music*", true)) { -			// TODO: Implement ActionUniverseMusic +			actionList.push_back(new ActionMusic(_engine, line, true));  		} else if (line.matchString("*:copy_file*", true)) {  			// Not used. Purposely left empty  		} else {  | 
