mirror of https://github.com/stella-emu/stella.git
Fix minor warning in Visual Studio.
This commit is contained in:
parent
ac4acdffec
commit
b68f72dd50
|
@ -19,6 +19,6 @@
|
|||
#define VERSION_HXX
|
||||
|
||||
#define STELLA_VERSION "6.0_pre1"
|
||||
#define STELLA_BUILD "4409"
|
||||
#define STELLA_BUILD "4430"
|
||||
|
||||
#endif
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue