From f75de289f89a6a8a30d93f04d0ef635c777428aa Mon Sep 17 00:00:00 2001 From: warwick Date: Tue, 20 Aug 2002 07:26:22 +0000 Subject: [PATCH] Default to compact mode on embedded builds. (one less FAQ to answer) --- win/Qt/qt_win.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/win/Qt/qt_win.cpp b/win/Qt/qt_win.cpp index a6e9d1d48..61dade8b1 100644 --- a/win/Qt/qt_win.cpp +++ b/win/Qt/qt_win.cpp @@ -191,7 +191,11 @@ extern "C" { char *qt_tilewidth=NULL; char *qt_tileheight=NULL; char *qt_fontsize=NULL; +#if defined(QWS) +int qt_compact_mode = 1; +#else int qt_compact_mode = 0; +#endif extern const char *enc_stat[]; /* from botl.c */ extern const char *hu_stat[]; /* from eat.c */ extern const char *killed_by_prefix[];