aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/lib/file/evas_module.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-23 23:30:42 +1000
committerDavid Walter Seikel2012-01-23 23:30:42 +1000
commit825a3d837a33f226c879cd02ad15c3fba57e8b2c (patch)
tree75f57bd9c4253508d338dc79ba8e57a7abc42255 /libraries/evas/src/lib/file/evas_module.c
parentAdd ability to disable the test harness, or the Lua compile test. (diff)
downloadSledjHamr-825a3d837a33f226c879cd02ad15c3fba57e8b2c.zip
SledjHamr-825a3d837a33f226c879cd02ad15c3fba57e8b2c.tar.gz
SledjHamr-825a3d837a33f226c879cd02ad15c3fba57e8b2c.tar.bz2
SledjHamr-825a3d837a33f226c879cd02ad15c3fba57e8b2c.tar.xz
Update the EFL to what I'm actually using, coz I'm using some stuff not yet released.
Diffstat (limited to 'libraries/evas/src/lib/file/evas_module.c')
-rw-r--r--libraries/evas/src/lib/file/evas_module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/evas/src/lib/file/evas_module.c b/libraries/evas/src/lib/file/evas_module.c
index 6b4d4f6..21d5cd0 100644
--- a/libraries/evas/src/lib/file/evas_module.c
+++ b/libraries/evas/src/lib/file/evas_module.c
@@ -285,7 +285,7 @@ evas_module_register(const Evas_Module_Api *module, Evas_Module_Type type)
285 if (type == EVAS_MODULE_TYPE_ENGINE) 285 if (type == EVAS_MODULE_TYPE_ENGINE)
286 { 286 {
287 eina_array_push(evas_engines, em); 287 eina_array_push(evas_engines, em);
288 em->id_engine = eina_array_count_get(evas_engines); 288 em->id_engine = eina_array_count(evas_engines);
289 } 289 }
290 290
291 eina_hash_direct_add(evas_modules[type], module->name, em); 291 eina_hash_direct_add(evas_modules[type], module->name, em);
@@ -398,7 +398,7 @@ Evas_Module *
398evas_module_engine_get(int render_method) 398evas_module_engine_get(int render_method)
399{ 399{
400 if ((render_method <= 0) || 400 if ((render_method <= 0) ||
401 ((unsigned int)render_method > eina_array_count_get(evas_engines))) 401 ((unsigned int)render_method > eina_array_count(evas_engines)))
402 return NULL; 402 return NULL;
403 return eina_array_data_get(evas_engines, render_method - 1); 403 return eina_array_data_get(evas_engines, render_method - 1);
404} 404}