mirror of https://github.com/axmolengine/axmol.git
clean up coding style and remove explicit temporary variable
This commit is contained in:
parent
063c730726
commit
2ebd400a75
|
@ -525,22 +525,20 @@ void android_main(struct android_app* state) {
|
|||
AConfiguration* _currentconf = AConfiguration_new();
|
||||
AConfiguration_fromAssetManager(_currentconf,
|
||||
state->activity->assetManager);
|
||||
static int32_t _orientation;
|
||||
_orientation = AConfiguration_getOrientation(_currentconf);
|
||||
static int32_t _orientation = AConfiguration_getOrientation(_currentconf);
|
||||
|
||||
cocos2d::Director* pDirector = cocos2d::Director::getInstance();
|
||||
if (ACONFIGURATION_ORIENTATION_LAND != _orientation) {
|
||||
// ACONFIGURATION_ORIENTATION_ANY
|
||||
// ACONFIGURATION_ORIENTATION_PORT
|
||||
// ACONFIGURATION_ORIENTATION_SQUARE
|
||||
pDirector->getAccelerometer()->update(event.acceleration.x,
|
||||
cocos2d::Director::getInstance()->getAccelerometer()->update(event.acceleration.x,
|
||||
-event.acceleration.y,
|
||||
event.acceleration.z,
|
||||
0);
|
||||
} else {
|
||||
// ACONFIGURATION_ORIENTATION_LAND
|
||||
// swap x and y parameters
|
||||
pDirector->getAccelerometer()->update(-event.acceleration.y,
|
||||
cocos2d::Director::getInstance()->getAccelerometer()->update(-event.acceleration.y,
|
||||
event.acceleration.x,
|
||||
event.acceleration.z,
|
||||
0);
|
||||
|
|
Loading…
Reference in New Issue