Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib
In directory sc8-pr-cvs1:/tmp/cvs-serv4412
Modified Files:
OSReadSysInfo.swi
Log Message:
Correct mistake in platform class constants.
Index: OSReadSysInfo.swi
===================================================================
RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib/OSReadSysInfo.swi,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** OSReadSysInfo.swi 25 Aug 2003 11:08:04 -0000 1.3
--- OSReadSysInfo.swi 25 Aug 2003 15:24:09 -0000 1.4
***************
*** 39,47 ****
TYPE OSReadSysInfo_Platform = .Int;
CONST
! OSReadSysInfo_PlatformUnknown = OSReadSysInfo_PlatformClass: 0,
! OSReadSysInfo_PlatformRiscPC = OSReadSysInfo_PlatformClass: 1,
! OSReadSysInfo_PlatformA7000 = OSReadSysInfo_PlatformClass: 2,
! OSReadSysInfo_PlatformA7000Plus = OSReadSysInfo_PlatformClass: 3,
! OSReadSysInfo_PlatformHAL = OSReadSysInfo_PlatformClass: 5;
TYPE OSReadSysInfo_PlatformFlags = .Bits;
--- 39,47 ----
TYPE OSReadSysInfo_Platform = .Int;
CONST
! OSReadSysInfo_PlatformUnknown = OSReadSysInfo_Platform: 0,
! OSReadSysInfo_PlatformRiscPC = OSReadSysInfo_Platform: 1,
! OSReadSysInfo_PlatformA7000 = OSReadSysInfo_Platform: 2,
! OSReadSysInfo_PlatformA7000Plus = OSReadSysInfo_Platform: 3,
! OSReadSysInfo_PlatformHAL = OSReadSysInfo_Platform: 5;
TYPE OSReadSysInfo_PlatformFlags = .Bits;
|