aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-10-13 18:10:08 +0000
committerMax Horn2003-10-13 18:10:08 +0000
commit5c55660e9b50e4f0d667b3fb55202140973b110f (patch)
tree615335137855242d02477b236de3f0ae36f777cd /scumm
parente3fcae3869b808014c7280bf208f48363907f5aa (diff)
downloadscummvm-rg350-5c55660e9b50e4f0d667b3fb55202140973b110f.tar.gz
scummvm-rg350-5c55660e9b50e4f0d667b3fb55202140973b110f.tar.bz2
scummvm-rg350-5c55660e9b50e4f0d667b3fb55202140973b110f.zip
init random seed with time
svn-id: r10784
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 49668511e2..43a04876ab 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -586,7 +586,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst)
VAR_CLICK_AREA = 0xFF;
// Set the RNG seed
- _rnd.setSeed(_system->get_msec());
+ _rnd.setSeed(_system->get_msecs());
// Use g_scumm from error() ONLY
g_scumm = this;