diff options
author | Lars Skovlund | 2011-01-22 13:12:01 +0000 |
---|---|---|
committer | Lars Skovlund | 2011-01-22 13:12:01 +0000 |
commit | dc27a2202622a1457c3aef038e2037ab080e9d30 (patch) | |
tree | b35ec78b71fb0d8835281d078f3bd602805883d2 /engines/sci/graphics/robot.cpp | |
parent | f48cc4119c7cded01331ad28edf5a85ba972252b (diff) | |
download | scummvm-rg350-dc27a2202622a1457c3aef038e2037ab080e9d30.tar.gz scummvm-rg350-dc27a2202622a1457c3aef038e2037ab080e9d30.tar.bz2 scummvm-rg350-dc27a2202622a1457c3aef038e2037ab080e9d30.zip |
SCI: Added stub for playing robot audio from the console
svn-id: r55424
Diffstat (limited to 'engines/sci/graphics/robot.cpp')
-rw-r--r-- | engines/sci/graphics/robot.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/sci/graphics/robot.cpp b/engines/sci/graphics/robot.cpp index 853e111daa..c2e0796a27 100644 --- a/engines/sci/graphics/robot.cpp +++ b/engines/sci/graphics/robot.cpp @@ -292,6 +292,11 @@ int GfxRobot::getFrameScale(int frame) { byte *videoData = _resourceData + _imageStart[frame]; return videoData[3]; } + +void GfxRobot::playAudio() { +// Audio::Mixer *mixer = g_system->getMixer(); +} + #endif |