From 78cb878c292fd312f9a7c31879fde8f1d4674270 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Mon, 6 Aug 2018 18:12:09 -0230 Subject: [PATCH] Fixed minor warning in Xcode. Strange that VS only picked up the other instance of this issue, and neither gcc nor clang found either one. --- src/emucore/System.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emucore/System.cxx b/src/emucore/System.cxx index d143c548e..fd8da8fba 100644 --- a/src/emucore/System.cxx +++ b/src/emucore/System.cxx @@ -39,7 +39,7 @@ System::System(const OSystem& osystem, M6502& m6502, M6532& m6532, mySystemInAutodetect(false) { // Re-initialize random generator - randGenerator().initSeed(myOSystem.getTicks()); + randGenerator().initSeed(uInt32(myOSystem.getTicks())); // Initialize page access table PageAccess access(&myNullDevice, System::PA_READ);