aboutsummaryrefslogtreecommitdiff
path: root/saga/events.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-10-11 17:39:31 +0000
committerTorbjörn Andersson2005-10-11 17:39:31 +0000
commite44213c8324052f74d0a9766b29edcaf01c3a6d1 (patch)
tree1edec62726cb12f7e23f2cc7c6fd4871daa922ae /saga/events.cpp
parentf405adae1f0e0cdb7b5c7f7bb5b8d3cf86a15076 (diff)
downloadscummvm-rg350-e44213c8324052f74d0a9766b29edcaf01c3a6d1.tar.gz
scummvm-rg350-e44213c8324052f74d0a9766b29edcaf01c3a6d1.tar.bz2
scummvm-rg350-e44213c8324052f74d0a9766b29edcaf01c3a6d1.zip
Cleanups. Mostly whitespace.
svn-id: r19022
Diffstat (limited to 'saga/events.cpp')
-rw-r--r--saga/events.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/events.cpp b/saga/events.cpp
index 5af2de814e..1ae7aef980 100644
--- a/saga/events.cpp
+++ b/saga/events.cpp
@@ -52,7 +52,7 @@ Events::~Events(void) {
// Function to process event list once per frame.
// First advances event times, then processes each event with the appropriate
-// handler depending on the type of event.
+// handler depending on the type of event.
int Events::handleEvents(long msec) {
Event *event_p;
@@ -100,7 +100,7 @@ int Events::handleEvents(long msec) {
} else {
// If there is an event chain present, move the next event
// in the chain up, adjust it by the previous delta time,
- // and reprocess the event */
+ // and reprocess the event
delta_time = event_p->time;
Event *from_chain = event_p->chain;
memcpy(event_p, from_chain, sizeof(*event_p));