VERSION=x.yy must set the setver-able DOS version, not the "true internal"

DOS version. The setver-able version is the one queried by int 21.30 and
settable by int 21.33fc, internal version is the one queried by int 21.3306.


git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@1190 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Eric Auer 2006-05-21 18:50:30 +00:00
parent db243d4688
commit ba7bde0bdf

View File

@ -954,8 +954,8 @@ STATIC VOID sysVersion(BYTE * pLine)
printf("Changing reported version to %d.%d\n", major, minor);
LoL->os_major = major;
LoL->os_minor = minor;
LoL->os_setver_major = major; /* not the internal os_major */
LoL->os_setver_minor = minor; /* not the internal os_minor */
}
STATIC VOID Files(BYTE * pLine)