On Mon, 29 Apr 2002 15:29:55 +0200
"Thomas Weidner" <[EMAIL PROTECTED]> wrote:

> i tried to run dune2 in dosemu,but after a short while dosemu 
> exits,because the logfile becomes bigger than 10M. It seems to me,that 
> always the same bug is reported. pls help:
> Dosemu 1.1.3+sb patch
> debian linux 2.4.18
> ----------------------------------------------------------------------------------
<skip>
> BUG: AC,ID set; flags changed to 000b0202
> [....]
> Exceeded maximum logfile limit of 10485760 bytes.  Exiting.

  You may disable that "BUG:" message with simple patch.
  (See attachement)

--
 Grigory Batalov.
diff -ruN dosemu-1.1.3.orig/src/emu-i386/do_vm86.c dosemu-1.1.3/src/emu-i386/do_vm86.c
--- dosemu-1.1.3.orig/src/emu-i386/do_vm86.c    Tue Mar 19 00:58:13 2002
+++ dosemu-1.1.3/src/emu-i386/do_vm86.c Tue Mar 19 23:51:43 2002
@@ -477,7 +477,7 @@
     /* This will protect us from Mr.Norton's bugs */
     if (_EFLAGS & (AC|ID)) {
       _EFLAGS &= ~(AC|ID);
-      dbug_printf("BUG: AC,ID set; flags changed to %08x\n",_EFLAGS);
+    /*  dbug_printf("BUG: AC,ID set; flags changed to %08x\n",_EFLAGS); */
     }
 #endif
     if (

Reply via email to