aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/schedule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/schedule.cpp')
-rw-r--r--engines/hugo/schedule.cpp22
1 files changed, 1 insertions, 21 deletions
diff --git a/engines/hugo/schedule.cpp b/engines/hugo/schedule.cpp
index 439e651e8c..22eb99c6dd 100644
--- a/engines/hugo/schedule.cpp
+++ b/engines/hugo/schedule.cpp
@@ -33,7 +33,6 @@
// This module contains all the scheduling and timing stuff
#include "common/system.h"
-#include "common/stream.h"
#include "hugo/game.h"
#include "hugo/hugo.h"
@@ -239,7 +238,7 @@ event_t *Scheduler::doAction(event_t *curEvent) {
insertActionList(action->a3.actFailIndex);
#endif
-//HACK: As the answer is not read, currently it's always considered correct
+ // HACK: As the answer is not read, currently it's always considered correct
insertActionList(action->a3.actPassIndex);
break;
}
@@ -674,23 +673,4 @@ void Scheduler::swapImages(int objNumb1, int objNumb2) {
_vm._objects[objNumb1].y += _vm._objects[objNumb2].currImagePtr->y2 - _vm._objects[objNumb1].currImagePtr->y2;
}
-Scheduler_v1d::Scheduler_v1d(HugoEngine &vm) : Scheduler(vm) {
-}
-
-Scheduler_v1d::~Scheduler_v1d() {
-}
-
-const char *Scheduler_v1d::getCypher() {
- return "Copyright 1991, Gray Design Associates";
-}
-
-Scheduler_v3d::Scheduler_v3d(HugoEngine &vm) : Scheduler(vm) {
-}
-
-Scheduler_v3d::~Scheduler_v3d() {
-}
-
-const char *Scheduler_v3d::getCypher() {
- return "Copyright 1992, Gray Design Associates";
-}
} // End of namespace Hugo