summaryrefslogtreecommitdiff
path: root/atari/plot
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-03-01 19:27:34 +0000
committerOle Loots <ole@monochrom.net>2011-03-01 19:27:34 +0000
commita80af90142526d5b026a89fdbac205e93e19d25a (patch)
treec51ed2c58d1c61b79e7e097b5b966d4977243a7c /atari/plot
parent46915c6b7b6d67675cb365776a972fde32a24596 (diff)
downloadnetsurf-a80af90142526d5b026a89fdbac205e93e19d25a.tar.gz
netsurf-a80af90142526d5b026a89fdbac205e93e19d25a.tar.bz2
Implemented OS detection routines provided by GS
svn path=/trunk/netsurf/; revision=11873
Diffstat (limited to 'atari/plot')
-rwxr-xr-xatari/plot/font_vdi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/atari/plot/font_vdi.c b/atari/plot/font_vdi.c
index d5cdc4eac..baaed2741 100755
--- a/atari/plot/font_vdi.c
+++ b/atari/plot/font_vdi.c
@@ -210,7 +210,8 @@ static int text( FONT_PLOTTER self, int x, int y, const char *text, size_t leng
} else {
vst_color( self->vdi_handle, BLACK );
}
- if( atari_sysinfo.gdosversion > 0x03000 ){
+
+ if( atari_sysinfo.gdos_FSMC ){
v_ftext( self->vdi_handle, x, y, (char*)&textcpy );
} else {
v_gtext( self->vdi_handle, x, y, (char*)&textcpy );