From 41ba89d8249be3abaa969fbb3bdf018cbc31a106 Mon Sep 17 00:00:00 2001 From: Ryszard Glab Date: Thu, 20 Apr 2000 15:14:16 +0000 Subject: [PATCH] ChangeLog 20000420-17:35 GMT+1 --- harbour/ChangeLog | 5 +++++ harbour/source/rtl/gtdos/gtdos.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e5afb9608c..642c5c45a4 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +20000420-17:35 GMT+1 Ryszard Glab + + *source/rtl/gtdos/gtdos.c + *fixed support for DJGPP compiler + 20000420-13:46 GMT+1 Ryszard Glab * source/compiler/genobj32.c diff --git a/harbour/source/rtl/gtdos/gtdos.c b/harbour/source/rtl/gtdos/gtdos.c index 4e256702f4..adf0b2aa3d 100644 --- a/harbour/source/rtl/gtdos/gtdos.c +++ b/harbour/source/rtl/gtdos/gtdos.c @@ -616,7 +616,7 @@ static void hb_gt_xPutch( USHORT cRow, USHORT cCol, BYTE attr, BYTE ch ) ch_attr = ( ch << 8 ) | attr; puttext( cCol + 1, cRow + 1, cCol + 1, cRow + 1, &ch_attr ); } -#elif defined(__DJGPP) +#elif defined(__DJGPP__) { ScreenPutChar( ch, attr, cCol, cRow ); } @@ -725,7 +725,7 @@ void hb_gt_PutText( USHORT usTop, USHORT usLeft, USHORT usBottom, USHORT usRight { HB_TRACE(HB_TR_DEBUG, ("hb_gt_PutText(%hu, %hu, %hu, %hu, %p", usTop, usLeft, usBottom, usRight, srce)); -#if defined(__DJGPP__TEXT) +#if defined(__DJGPP__TEXT) || defined(__DJGPP__) { puttext( usLeft + 1, usTop + 1, usRight + 1, usBottom + 1, srce ); }