Merge pull request #8357 from hhromic/fixes

Couple of minor fixes
This commit is contained in:
Twinaphex 2019-02-24 14:02:57 +01:00 committed by GitHub
commit 409f9eb5b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1670,6 +1670,7 @@ static void rgui_render(void *data, bool is_idle)
char message[255];
char entry_title_buf[255];
char type_str_buf[255];
menu_entry_t entry;
char *entry_path = NULL;
unsigned entry_spacing = 0;
size_t entry_title_max_len = 0;

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*);