summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-01-22 16:38:26 +0000
committerOle Loots <ole@monochrom.net>2011-01-22 16:38:26 +0000
commitdeb88adffbf1e7e324a57e0300cdf9ece10d531c (patch)
treef3d66a7409939438dafb47bbd4f2ab532469ffe5
parent3462356059756c2095919ad0b904bd1262d4bf80 (diff)
downloadnetsurf-deb88adffbf1e7e324a57e0300cdf9ece10d531c.tar.gz
netsurf-deb88adffbf1e7e324a57e0300cdf9ece10d531c.tar.bz2
Shrinked initial size of the canvas area.
svn path=/trunk/netsurf/; revision=11447
-rw-r--r--atari/plot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/atari/plot.c b/atari/plot.c
index d7f4b4ba0..1dd807356 100644
--- a/atari/plot.c
+++ b/atari/plot.c
@@ -52,7 +52,7 @@ Returns value < 0 to indicate an error
int atari_plotter_init( char* drvrname, char * fdrvrname )
{
- GRECT loc_pos={0,0,420,420};
+ GRECT loc_pos={0,0,360,400};
int err=0;
struct s_driver_table_entry * drvinfo;
int flags = 0;
@@ -68,7 +68,6 @@ int atari_plotter_init( char* drvrname, char * fdrvrname )
dump_plot_drivers();
dump_font_drivers();
}
-
drvinfo = get_screen_driver_entry( drvrname );
LOG(("using plotters: %s, %s", drvrname, fdrvrname));