diff options
author | Max Horn | 2010-03-18 15:07:11 +0000 |
---|---|---|
committer | Max Horn | 2010-03-18 15:07:11 +0000 |
commit | d78dba3bcae77e85107836cfeecaa958b7ebe4d4 (patch) | |
tree | ffe9793ec249ebe8bb429ce1cbeb9ef5155b0578 /engines/made | |
parent | ef93d6921ee4dfed349093bd7378d99107d9e211 (diff) | |
download | scummvm-rg350-d78dba3bcae77e85107836cfeecaa958b7ebe4d4.tar.gz scummvm-rg350-d78dba3bcae77e85107836cfeecaa958b7ebe4d4.tar.bz2 scummvm-rg350-d78dba3bcae77e85107836cfeecaa958b7ebe4d4.zip |
COMMON: Move Common::RandomSource to common/random.*
svn-id: r48279
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/made.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/made/made.h b/engines/made/made.h index 4d10df38f5..08f9add33d 100644 --- a/engines/made/made.h +++ b/engines/made/made.h @@ -28,13 +28,14 @@ #include "common/scummsys.h" #include "common/endian.h" -#include "common/util.h" +#include "common/events.h" #include "common/file.h" -#include "common/savefile.h" -#include "common/system.h" #include "common/hash-str.h" -#include "common/events.h" #include "common/keyboard.h" +#include "common/random.h" +#include "common/savefile.h" +#include "common/system.h" +#include "common/util.h" #include "graphics/surface.h" |