summaryrefslogtreecommitdiff
authorzcarsten <zcarsten>2003-08-14 07:19:50 (UTC)
committer zcarsten <zcarsten>2003-08-14 07:19:50 (UTC)
commitbbe788821dd43351b96c7a8826f1b7d904f33fdb (patch) (unidiff)
treebdb188bf21b37c88a245a1f180c68283ababa67d
parent1ff9232b95b7f8ea0d841a3b9219eaa7e82f1d62 (diff)
downloadopie-bbe788821dd43351b96c7a8826f1b7d904f33fdb.zip
opie-bbe788821dd43351b96c7a8826f1b7d904f33fdb.tar.gz
opie-bbe788821dd43351b96c7a8826f1b7d904f33fdb.tar.bz2
changes for japanese C7x0 support
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/zsafe/main.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/noncore/apps/zsafe/main.cpp b/noncore/apps/zsafe/main.cpp
index e225775..7ff549b 100644
--- a/noncore/apps/zsafe/main.cpp
+++ b/noncore/apps/zsafe/main.cpp
@@ -1,9 +1,9 @@
1/* 1/*
2** Author: Carsten Schneider <zcarsten@gmx.net> 2** Author: Carsten Schneider <CarstenSchneider@t-online.de>
3** 3**
4** $Id$ 4** $Id$
5** 5**
6** Homepage: http://z-soft.z-portal.info/zsafe/index.html 6** Homepage: http://home.t-online.de/home/CarstenSchneider/zsafe/index.html
7*/ 7*/
8 8
9 9
@@ -78,6 +78,10 @@ int main( int argc, char ** argv )
78 char buf[128]; 78 char buf[128];
79 sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH); 79 sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH);
80 qWarning (buf); 80 qWarning (buf);
81
82#ifdef JPATCH_HDE
83 // nothings
84#else
81 if (DeskW > 240) 85 if (DeskW > 240)
82 { 86 {
83 DeskW -= 20; 87 DeskW -= 20;
@@ -87,6 +91,8 @@ int main( int argc, char ** argv )
87 } 91 }
88#endif 92#endif
89 93
94#endif
95
90 ZSafe mw; 96 ZSafe mw;
91 zs = &mw; 97 zs = &mw;
92 98