Fix minor warning in Visual Studio.

This commit is contained in:
Stephen Anthony 2018-08-06 18:02:12 -02:30
parent ac4acdffec
commit b68f72dd50
2 changed files with 2 additions and 2 deletions

View File

@ -19,6 +19,6 @@
#define VERSION_HXX
#define STELLA_VERSION "6.0_pre1"
#define STELLA_BUILD "4409"
#define STELLA_BUILD "4430"
#endif

View File

@ -158,7 +158,7 @@ bool OSystem::create()
mySerialPort = MediaFactory::createSerialPort();
// Create random number generator
myRandom = make_unique<Random>(getTicks());
myRandom = make_unique<Random>(uInt32(getTicks()));
// Create PNG handler
myPNGLib = make_unique<PNGLibrary>(*this);