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.
This commit is contained in:
Stephen Anthony 2018-08-06 18:12:09 -02:30
parent b68f72dd50
commit 78cb878c29
1 changed files with 1 additions and 1 deletions

View File

@ -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);