From 6322c5843d1517b6e9ab0a19b4538ec4c640889c Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Thu, 23 Sep 2004 21:45:59 +0000 Subject: [PATCH] fix engine ifdefs SVN revision: 11709 --- legacy/emotion/src/bin/emotion_test_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/emotion/src/bin/emotion_test_main.c b/legacy/emotion/src/bin/emotion_test_main.c index 476e87f366..0af70a7717 100644 --- a/legacy/emotion/src/bin/emotion_test_main.c +++ b/legacy/emotion/src/bin/emotion_test_main.c @@ -85,15 +85,15 @@ main_start(int argc, char **argv) } } } -#ifdef HAVE_ECORE_EVAS_FB +#if HAVE_ECORE_EVAS_X if (mode == 0) ecore_evas = ecore_evas_software_x11_new(NULL, 0, 0, 0, startw, starth); #endif -#ifdef HAVE_ECORE_EVAS_GL +#if HAVE_ECORE_EVAS_GL if (mode == 1) ecore_evas = ecore_evas_gl_x11_new(NULL, 0, 0, 0, startw, starth); #endif -#ifdef HAVE_ECORE_EVAS_X +#if HAVE_ECORE_EVAS_FB if (mode == 2) ecore_evas = ecore_evas_fb_new(NULL, 0, startw, starth); #endif