summaryrefslogtreecommitdiff
path: root/libopie2
authorzecke <zecke>2005-11-02 20:08:42 (UTC)
committer zecke <zecke>2005-11-02 20:08:42 (UTC)
commit562ff5c89ae1da92172a086afc8c3ffb7eec23bd (patch) (unidiff)
tree1b95768a3215b4f74b6a2723cd4fa093fcd46d17 /libopie2
parent1c35276ae800e8adfcca2ddb010a0fe8080754bd (diff)
downloadopie-562ff5c89ae1da92172a086afc8c3ffb7eec23bd.zip
opie-562ff5c89ae1da92172a086afc8c3ffb7eec23bd.tar.gz
opie-562ff5c89ae1da92172a086afc8c3ffb7eec23bd.tar.bz2
ODevice iPAQ h191x and MyPal Asus:
Patch by Pawel Kolodziejski to change the maximum brightnes for H191x and Asus MyPAL.
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_ipaq.cpp2
-rw-r--r--libopie2/opiecore/device/odevice_mypal.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/libopie2/opiecore/device/odevice_ipaq.cpp b/libopie2/opiecore/device/odevice_ipaq.cpp
index 2d734a4..5272a3c 100644
--- a/libopie2/opiecore/device/odevice_ipaq.cpp
+++ b/libopie2/opiecore/device/odevice_ipaq.cpp
@@ -405,7 +405,7 @@ int iPAQ::displayBrightnessResolution() const
405 case Model_iPAQ_H5xxx: 405 case Model_iPAQ_H5xxx:
406 return 255; 406 return 255;
407 case Model_iPAQ_H191x: 407 case Model_iPAQ_H191x:
408 return 183; 408 return 7;
409 case Model_iPAQ_H1940: 409 case Model_iPAQ_H1940:
410 return 44; 410 return 44;
411 default: 411 default:
diff --git a/libopie2/opiecore/device/odevice_mypal.cpp b/libopie2/opiecore/device/odevice_mypal.cpp
index 45c70ae..da0272e 100644
--- a/libopie2/opiecore/device/odevice_mypal.cpp
+++ b/libopie2/opiecore/device/odevice_mypal.cpp
@@ -201,8 +201,8 @@ bool MyPal::setDisplayBrightness ( int bright )
201{ 201{
202 bool res = false; 202 bool res = false;
203 203
204 if ( bright > 220 ) 204 if ( bright > 255 )
205 bright = 220; 205 bright = 255;
206 if ( bright < 0 ) 206 if ( bright < 0 )
207 bright = 0; 207 bright = 0;
208 208
@@ -228,7 +228,7 @@ int MyPal::displayBrightnessResolution() const
228{ 228{
229 switch ( model()) { 229 switch ( model()) {
230 case Model_MyPal_716: 230 case Model_MyPal_716:
231 return 220; 231 return 7;
232 default: 232 default:
233 return OAbstractMobileDevice::displayBrightnessResolution(); 233 return OAbstractMobileDevice::displayBrightnessResolution();
234 } 234 }