From ba7bde0bdfd776fb83c7be4898a3493083b2b4d1 Mon Sep 17 00:00:00 2001 From: Eric Auer Date: Sun, 21 May 2006 18:50:30 +0000 Subject: [PATCH] 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 --- kernel/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/config.c b/kernel/config.c index 2a5d287..f7723b5 100644 --- a/kernel/config.c +++ b/kernel/config.c @@ -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)