[Scummvm-cvs-logs] CVS: scummvm/saga input.cpp,1.21,1.22 saga.cpp,1.64,1.65
Max Horn
fingolfin at users.sourceforge.net
Sat Nov 20 16:33:08 CET 2004
Update of /cvsroot/scummvm/scummvm/saga
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25810/saga
Modified Files:
input.cpp saga.cpp
Log Message:
Removing walkthrough stuff again (talked to aquadran about this, he had no objections)
Index: input.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/input.cpp,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- input.cpp 20 Nov 2004 00:05:50 -0000 1.21
+++ input.cpp 20 Nov 2004 23:49:10 -0000 1.22
@@ -42,10 +42,6 @@
switch (event.event_code) {
case OSystem::EVENT_KEYDOWN:
- if ((event.kbd.flags == OSystem::KBD_CTRL) && (event.kbd.keycode == 'w')) {
- _walkthroughDialog->runModal();
- _gfx->updateCursor();
- }
if (_vm->_console->isActive()) {
in_char = event.kbd.ascii;
switch (event.kbd.keycode) {
Index: saga.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/saga/saga.cpp,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- saga.cpp 20 Nov 2004 17:19:15 -0000 1.64
+++ saga.cpp 20 Nov 2004 23:49:10 -0000 1.65
@@ -115,12 +115,9 @@
_mixer->setVolume(ConfMan.getInt("sfx_volume") * ConfMan.getInt("master_volume") / 255);
_vm = this;
-
- _walkthroughDialog->setGameName(detector->_game.name);
}
SagaEngine::~SagaEngine() {
- _walkthroughDialog->destroy();
}
void SagaEngine::errorString(const char *buf1, char *buf2) {
@@ -220,8 +217,6 @@
return;
}
- _walkthroughDialog->create();
-
// Initialize system specific sound
_sound = new Sound(this, _mixer, _soundEnabled);
if (!_soundEnabled) {
More information about the Scummvm-git-logs
mailing list