author | mickeyl <mickeyl> | 2003-05-23 20:39:17 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-23 20:39:17 (UTC) |
commit | 0c4b5288ccd4bcd1668816a0c4e12ce0a76b4e6e (patch) (side-by-side diff) | |
tree | d3ca4e58beec5121ea2f7c02df1ac689bdb06be3 /libopie | |
parent | 165a62b3ca9cc8e2c3c66845f465a38413fa60d9 (diff) | |
download | opie-0c4b5288ccd4bcd1668816a0c4e12ce0a76b4e6e.zip opie-0c4b5288ccd4bcd1668816a0c4e12ce0a76b4e6e.tar.gz opie-0c4b5288ccd4bcd1668816a0c4e12ce0a76b4e6e.tar.bz2 |
fix default rotation and direction for SIMpad
-rw-r--r-- | libopie/odevice.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 02f13b5..2873407 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -1514,5 +1514,8 @@ void SIMpad::init ( ) switch ( d-> m_model ) { default: - d-> m_rotation = Rot270; + d-> m_rotation = Rot0; + d-> m_direction = CCW; + d-> m_holdtime = 1000; // 1000ms + break; } |