diff options
author | Torbjörn Andersson | 2004-04-13 09:14:19 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2004-04-13 09:14:19 +0000 |
commit | 7f0adec96ef50ff84e41fafc7f6dc98ace86207a (patch) | |
tree | ecfde09ae7df4e0ba9fc3a4fde7f28ee8319e9ef | |
parent | e6766d413a8a2b5ee22a27a9e715cc483fb65717 (diff) | |
download | scummvm-rg350-7f0adec96ef50ff84e41fafc7f6dc98ace86207a.tar.gz scummvm-rg350-7f0adec96ef50ff84e41fafc7f6dc98ace86207a.tar.bz2 scummvm-rg350-7f0adec96ef50ff84e41fafc7f6dc98ace86207a.zip |
Fixed warning. (There are plenty of warnings in the SAGA engine, but this
one was obvious how to fix. :-)
svn-id: r13573
-rw-r--r-- | saga/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/events.cpp b/saga/events.cpp index 6dcfe4ff06..f822d23b3e 100644 --- a/saga/events.cpp +++ b/saga/events.cpp @@ -603,7 +603,7 @@ static int ProcessEventTime(long msec) if (event_count > R_EVENT_WARNINGCOUNT) { R_printf(R_STDERR, - "WARNING: Event list exceeds %u.\n"); + "WARNING: Event list exceeds %u.\n", R_EVENT_WARNINGCOUNT); } } |