(retroarch) Fix declaration of some globals

This commit is contained in:
Higor Eurípedes 2015-06-21 19:29:28 -03:00
parent 954572cd0a
commit a05032a80d
2 changed files with 5 additions and 2 deletions

View File

@ -59,6 +59,9 @@
#include "menu/menu_input.h"
#endif
char orig_savestate_dir[PATH_MAX_LENGTH];
char orig_savefile_dir[PATH_MAX_LENGTH];
/* Descriptive names for options without short variant. Please keep the name in
sync with the option name. Order does not matter. */
enum {

View File

@ -172,8 +172,8 @@ void set_paths_redirect(const char *path);
int rarch_info_get_capabilities(enum rarch_capabilities type, char *s, size_t len);
char orig_savestate_dir[PATH_MAX_LENGTH];
char orig_savefile_dir[PATH_MAX_LENGTH];
extern char orig_savestate_dir[PATH_MAX_LENGTH];
extern char orig_savefile_dir[PATH_MAX_LENGTH];
#ifdef __cplusplus
}