From d215a2a0f5a07ca05b56b6c0039f48a94529d32c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Jul 2013 15:06:28 +0200 Subject: [PATCH] remove ifdefs around puts PACKAGEVERSION line --- gfx/gfx_context.c | 3 +++ retroarch.c | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gfx/gfx_context.c b/gfx/gfx_context.c index c4cca60945..b811b87df9 100644 --- a/gfx/gfx_context.c +++ b/gfx/gfx_context.c @@ -54,6 +54,9 @@ static const gfx_ctx_driver_t *gfx_ctx_drivers[] = { #if defined(HAVE_SDL) && defined(HAVE_OPENGL) &gfx_ctx_sdl_gl, #endif +#if defined(IS_XCODE) && defined(__APPLE__) + &gfx_ctx_null, +#endif }; const gfx_ctx_driver_t *gfx_ctx_find_driver(const char *ident) diff --git a/retroarch.c b/retroarch.c index 9c8488ba29..7005d50d06 100644 --- a/retroarch.c +++ b/retroarch.c @@ -632,10 +632,8 @@ static void print_compiler(FILE *file) static void print_help(void) { puts("==================================================================="); -#if !defined(__BLACKBERRY_QNX__) && !defined(IOS) && !defined(IS_XCODE) /* To get around error 'too many decimal points in number - expected ')' before numeric constant */ puts("RetroArch: Frontend for libretro -- v" PACKAGE_VERSION " --"); -#endif print_compiler(stdout); puts("==================================================================="); puts("Usage: retroarch [rom file] [options...]");