win: fix bug about engine value.

When application does not have any value of engine,
this app should be launched with elm_config's value.

Signed-Off-By: Wonsik Jung <sidein@samsung.com>
This commit is contained in:
ChunEon Park 2015-06-17 13:54:42 +09:00
parent 21f0103397
commit 50aceb5a89
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ static const Elm_Win_Trap *trap = NULL;
} \
}
#define ENGINE_GET() (_elm_preferred_engine ? _elm_preferred_engine : "")
#define ENGINE_GET() (_elm_preferred_engine ? _elm_preferred_engine : _elm_config->engine)
typedef struct _Elm_Win_Data Elm_Win_Data;