remove ifdefs around puts PACKAGEVERSION line

This commit is contained in:
twinaphex 2013-07-04 15:06:28 +02:00
parent 77d5190a01
commit d215a2a0f5
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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...]");