From b68f72dd5035f5cc16465f8d2c4e485f4e7ef6d5 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Mon, 6 Aug 2018 18:02:12 -0230 Subject: [PATCH] Fix minor warning in Visual Studio. --- src/common/Version.hxx | 2 +- src/emucore/OSystem.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/Version.hxx b/src/common/Version.hxx index bc1d304a5..3748e3197 100644 --- a/src/common/Version.hxx +++ b/src/common/Version.hxx @@ -19,6 +19,6 @@ #define VERSION_HXX #define STELLA_VERSION "6.0_pre1" -#define STELLA_BUILD "4409" +#define STELLA_BUILD "4430" #endif diff --git a/src/emucore/OSystem.cxx b/src/emucore/OSystem.cxx index c7a9cee4e..f4ef445bc 100644 --- a/src/emucore/OSystem.cxx +++ b/src/emucore/OSystem.cxx @@ -158,7 +158,7 @@ bool OSystem::create() mySerialPort = MediaFactory::createSerialPort(); // Create random number generator - myRandom = make_unique(getTicks()); + myRandom = make_unique(uInt32(getTicks())); // Create PNG handler myPNGLib = make_unique(*this);