From: Iván Briano Date: Wed, 25 Jan 2012 17:15:43 +0000 (+0000) Subject: Whine if the engine in ELM_ENGINE is not known so users are aware of it X-Git-Tag: v1.0.0~1107 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22e3aa8da698aebe6a02aa69000cdad57260fa41;p=platform%2Fupstream%2Felementary.git Whine if the engine in ELM_ENGINE is not known so users are aware of it SVN revision: 67540 --- diff --git a/src/lib/elm_config.c b/src/lib/elm_config.c index 3e273cc..26e406c 100644 --- a/src/lib/elm_config.c +++ b/src/lib/elm_config.c @@ -1205,6 +1205,8 @@ _env_get(void) eina_stringshare_replace(&_elm_config->engine, ELM_WAYLAND_SHM); else if ((!strcasecmp(s, "wayland_egl"))) eina_stringshare_replace(&_elm_config->engine, ELM_WAYLAND_EGL); + else + ERR("Unknown engine '%s'.", s); } s = getenv("ELM_VSYNC");