mirror of https://github.com/stella-emu/stella.git
Fix fallout from rebase.
This commit is contained in:
parent
05260ca006
commit
1ba1332501
|
@ -54,6 +54,7 @@
|
||||||
#include "CommandMenu.hxx"
|
#include "CommandMenu.hxx"
|
||||||
#include "Serializable.hxx"
|
#include "Serializable.hxx"
|
||||||
#include "Serializer.hxx"
|
#include "Serializer.hxx"
|
||||||
|
#include "TimerManager.hxx"
|
||||||
#include "Version.hxx"
|
#include "Version.hxx"
|
||||||
#include "TIAConstants.hxx"
|
#include "TIAConstants.hxx"
|
||||||
#include "FrameLayout.hxx"
|
#include "FrameLayout.hxx"
|
||||||
|
@ -106,7 +107,7 @@ Console::Console(OSystem& osystem, unique_ptr<Cartridge>& cart,
|
||||||
myTIA->setFrameManager(myFrameManager.get());
|
myTIA->setFrameManager(myFrameManager.get());
|
||||||
|
|
||||||
// Reinitialize the RNG
|
// Reinitialize the RNG
|
||||||
myOSystem.random().initSeed(static_cast<uInt32>(myOSystem.getTicks()));
|
myOSystem.random().initSeed(static_cast<uInt32>(TimerManager::getTicks()));
|
||||||
|
|
||||||
// Construct the system and components
|
// Construct the system and components
|
||||||
mySystem = make_unique<System>(myOSystem.random(), *my6502, *myRiot, *myTIA, *myCart);
|
mySystem = make_unique<System>(myOSystem.random(), *my6502, *myRiot, *myTIA, *myCart);
|
||||||
|
|
Loading…
Reference in New Issue