mirror of https://github.com/stella-emu/stella.git
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:
parent
b68f72dd50
commit
78cb878c29
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue