[Title]modified rotation values for changed criteria of SensorFW
authorsungmin ha <sungmin82.ha@samsung.com>
Fri, 14 Sep 2012 04:47:42 +0000 (13:47 +0900)
committersungmin ha <sungmin82.ha@samsung.com>
Fri, 14 Sep 2012 04:47:42 +0000 (13:47 +0900)
[Type]Bugfix
[Module]qemu
[Priority]Major
[Jira#] // Jira Issue Number
[Redmine#]  // Redmine Isuue Number
[Problem]  // Problem Description
[Cause]  // Cause Description
[Solution] // Solution Description
[TestCase]  // Executed the test-target (How to)

package/pkginfo.manifest
tizen/src/skin/maruskin_operation.c

index d7e53af49c5fcf9c94d216c331ea76f92100a176..bc91c45b5e41a770edad14052e7dbb63ffef238e 100644 (file)
@@ -1,4 +1,4 @@
-Version: 1.3.54
+Version: 1.3.55
 Maintainer: Yeong-Kyoon Lee<yeongkyoon.lee@samsung.com>
 Source: emulator
 
index 8c6e4063ef9787602ccd2cf2b52a64afb5db2d35..b4a1d628ec9df654082be6347c7f00b38c553876 100644 (file)
@@ -253,16 +253,16 @@ void do_rotation_event( int rotation_type)
 
     switch ( rotation_type ) {
         case ROTATION_PORTRAIT:
-            sprintf( send_buf, "1\n3\n0\n-9.80665\n0\n" );
+            sprintf( send_buf, "1\n3\n0\n9.80665\n0\n" );
             break;
         case ROTATION_LANDSCAPE:
-            sprintf( send_buf, "1\n3\n-9.80665\n0\n0\n" );
+            sprintf( send_buf, "1\n3\n9.80665\n0\n0\n" );
             break;
         case ROTATION_REVERSE_PORTRAIT:
-            sprintf( send_buf, "1\n3\n0\n9.80665\n0\n" );
+            sprintf( send_buf, "1\n3\n0\n-9.80665\n0\n" );
             break;
         case ROTATION_REVERSE_LANDSCAPE:
-            sprintf(send_buf, "1\n3\n9.80665\n0\n0\n");
+            sprintf(send_buf, "1\n3\n-9.80665\n0\n0\n");
             break;
 
         default: