(menu_animation.c) Use semi-colon properly for TICKER_SPACER_DEFAULT

Defines should not have semi-colons. Correct the fix in 3cbae9c.
This commit is contained in:
Hugo Hromic 2019-02-24 12:08:30 +00:00
parent 97b7512420
commit b5368c9423
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ typedef struct menu_animation menu_animation_t;
#define TICKER_SPEED 333
#define TICKER_SLOW_SPEED 1600
static const char ticker_spacer_default[] = TICKER_SPACER_DEFAULT
static const char ticker_spacer_default[] = TICKER_SPACER_DEFAULT;
static menu_animation_t anim;
static retro_time_t cur_time = 0;

View File

@ -25,7 +25,7 @@
RETRO_BEGIN_DECLS
#define TICKER_SPACER_DEFAULT " | ";
#define TICKER_SPACER_DEFAULT " | "
typedef float (*easing_cb) (float, float, float, float);
typedef void (*tween_cb) (void*);