aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorMax Horn2009-06-07 17:06:32 +0000
committerMax Horn2009-06-07 17:06:32 +0000
commitf2ca788004a86d7f1eb1a8ec27c26b552906fce4 (patch)
tree614ced3ef5eed8bb8b5988dd63ebd320bcfed95a /engines/sci/console.cpp
parent42555118bac45df0a14d2928b89ef44c3a606cd2 (diff)
downloadscummvm-rg350-f2ca788004a86d7f1eb1a8ec27c26b552906fce4.tar.gz
scummvm-rg350-f2ca788004a86d7f1eb1a8ec27c26b552906fce4.tar.bz2
scummvm-rg350-f2ca788004a86d7f1eb1a8ec27c26b552906fce4.zip
SCI: Renamed various song/songlib related structs and members
svn-id: r41342
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r--engines/sci/console.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 74204103bf..e91c1176ca 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -37,7 +37,7 @@
#include "sci/gfx/gfx_gui.h" // for sciw_set_status_bar
#include "sci/gfx/gfx_state_internal.h"
#include "sci/gfx/gfx_widgets.h" // for getPort
-#include "sci/sfx/songlib.h" // for songlib_t
+#include "sci/sfx/songlib.h" // for SongLibrary
#include "sci/sfx/iterator.h" // for SCI_SONG_ITERATOR_TYPE_SCI0
#include "sci/sfx/sci_midi.h"
#include "sci/vocabulary.h"
@@ -1530,14 +1530,14 @@ bool Console::cmdShowMap(int argc, const char **argv) {
bool Console::cmdSongLib(int argc, const char **argv) {
DebugPrintf("Song library:\n");
- song_t *seeker = *(g_EngineState->_sound._songlib.lib);
+ Song *seeker = *(g_EngineState->_sound._songlib._lib);
do {
DebugPrintf(" %p", (void *)seeker);
if (seeker) {
- DebugPrintf("[%04lx,p=%d,s=%d]->", seeker->handle, seeker->priority, seeker->status);
- seeker = seeker->next;
+ DebugPrintf("[%04lx,p=%d,s=%d]->", seeker->_handle, seeker->_priority, seeker->_status);
+ seeker = seeker->_next;
}
DebugPrintf("\n");
} while (seeker);