Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scummvm/scummvm
base: 9586ff04882a
Choose a base ref
...
head repository: scummvm/scummvm
compare: 99c72c7b5cf6
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 23, 2018

  1. AVALANCHE: Remove unnecessary call to setSeed()

    There is no need to initialize Common::RandomSource's seed with
    _system->getTimeAndDate(time) as its constructor already initializes
    it with g_system->getMillis().
    bonki committed Mar 23, 2018
    Copy the full SHA
    39fd49e View commit details
    Browse the repository at this point in the history
  2. HUGO: Remove unnecessary call to setSeed()

    Initializing Common::RandomSource's seed with a fixed value will always
    yield the same sequence of pseudo-random numbers which is probably not
    desirable. Since the constructor takes care of initializing the seed
    properly doing so manually is not needed.
    bonki committed Mar 23, 2018
    Copy the full SHA
    99c72c7 View commit details
    Browse the repository at this point in the history