Default X and Y aspect ratio to 0. This will make NetSurf assume that the screen has

square pixels, which is true in 99% of cases on OS4.

svn path=/trunk/netsurf/; revision=13377
This commit is contained in:
Chris Young 2012-01-06 18:55:30 +00:00
parent 767f40dc72
commit 7314d12cba

View File

@ -114,8 +114,8 @@ int option_cookies_window_ysize = 0; \
int option_cairo_renderer = 1; \
bool option_direct_render = false; \
int option_amiga_ydpi = 72; \
int option_monitor_aspect_x = 4; \
int option_monitor_aspect_y = 3; \
int option_monitor_aspect_x = 0; \
int option_monitor_aspect_y = 0; \
bool option_accept_lang_locale = true; \
int option_menu_refresh = 0; \