diff options
author | waker <wakeroid@gmail.com> | 2012-05-18 17:01:26 +0200 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2012-05-18 17:01:26 +0200 |
commit | b9ed661ce514e73569c8b20f289c6d3fc4671c5b (patch) | |
tree | 1c5a69a319bb7dda0a07a9f97630a4fec913e1df /plugins/sid | |
parent | 075c04fec9ea0c59938e6152b3b875a328f4bc13 (diff) |
removed srand(time(NULL)) call from libsidplay Player ctor (it was breaking random play order)
Diffstat (limited to 'plugins/sid')
-rw-r--r-- | plugins/sid/sidplay-libs/libsidplay/src/player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sid/sidplay-libs/libsidplay/src/player.cpp b/plugins/sid/sidplay-libs/libsidplay/src/player.cpp index 38b612c0..4fa51139 100644 --- a/plugins/sid/sidplay-libs/libsidplay/src/player.cpp +++ b/plugins/sid/sidplay-libs/libsidplay/src/player.cpp @@ -272,7 +272,7 @@ Player::Player (void) m_running (false), m_sampleCount (0) { - srand ((uint) ::time(NULL)); +// srand ((uint) ::time(NULL)); m_rand = (uint_least32_t) rand (); // Set the ICs to use this environment |