[Scummvm-git-logs] scummvm master -> 8a374bdf0c9ab5df77c43a4e89249144e123e4cd
grechnik
diamondaz at yandex.ru
Wed Oct 17 23:56:55 CEST 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
8a374bdf0c LASTEXPRESS: rnd() should not return a constant
Commit: 8a374bdf0c9ab5df77c43a4e89249144e123e4cd
https://github.com/scummvm/scummvm/commit/8a374bdf0c9ab5df77c43a4e89249144e123e4cd
Author: Evgeny Grechnikov (diamondaz at yandex.ru)
Date: 2018-10-18T00:56:28+03:00
Commit Message:
LASTEXPRESS: rnd() should not return a constant
Changed paths:
engines/lastexpress/lastexpress.h
diff --git a/engines/lastexpress/lastexpress.h b/engines/lastexpress/lastexpress.h
index 11fa8c7..0edd325 100644
--- a/engines/lastexpress/lastexpress.h
+++ b/engines/lastexpress/lastexpress.h
@@ -79,7 +79,7 @@ public:
~LastExpressEngine();
// Misc
- Common::RandomSource getRandom() const {return _random; }
+ Common::RandomSource& getRandom() {return _random; }
// Game
Cursor *getCursor() const { return _cursor; }
More information about the Scummvm-git-logs
mailing list