mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
(PS3) Small cleanups
This commit is contained in:
parent
0f7c24fd49
commit
347e03b767
@ -221,6 +221,13 @@ void rarch_console_rsound_stop(void);
|
||||
void rarch_convert_char_to_wchar(wchar_t *buf, const char * str, size_t size);
|
||||
const char * rarch_convert_wchar_to_const_char(const wchar_t * wstr);
|
||||
|
||||
enum
|
||||
{
|
||||
CONFIG_FILE,
|
||||
SHADER_PRESET_FILE,
|
||||
INPUT_PRESET_FILE
|
||||
};
|
||||
|
||||
void rarch_config_create_default(const char * conf_name);
|
||||
void rarch_config_load(const char * conf_name, const char * libretro_dir_path, const char * exe_ext, bool find_libretro_path);
|
||||
void rarch_config_save(const char * conf_name);
|
||||
|
@ -70,7 +70,6 @@
|
||||
|
||||
#if defined(__CELLOS_LV2__)
|
||||
static uint8_t np_pool[NP_POOL_SIZE];
|
||||
char contentInfoPath[PATH_MAX];
|
||||
char usrDirPath[PATH_MAX];
|
||||
SYS_PROCESS_PARAM(1001, 0x100000)
|
||||
#elif defined(_XBOX)
|
||||
@ -252,6 +251,7 @@ static void get_environment_settings (void)
|
||||
unsigned int get_attributes;
|
||||
CellGameContentSize size;
|
||||
char dirName[CELL_GAME_DIRNAME_SIZE];
|
||||
char contentInfoPath[PATH_MAX];
|
||||
|
||||
memset(&size, 0x00, sizeof(CellGameContentSize));
|
||||
|
||||
|
@ -60,7 +60,6 @@
|
||||
#define NP_POOL_SIZE (128*1024)
|
||||
|
||||
static uint8_t np_pool[NP_POOL_SIZE];
|
||||
char contentInfoPath[PATH_MAX];
|
||||
char usrDirPath[PATH_MAX];
|
||||
char DEFAULT_PRESET_FILE[PATH_MAX];
|
||||
char DEFAULT_BORDER_FILE[PATH_MAX];
|
||||
@ -174,6 +173,7 @@ static void get_environment_settings(int argc, char *argv[])
|
||||
unsigned int get_attributes;
|
||||
CellGameContentSize size;
|
||||
char dirName[CELL_GAME_DIRNAME_SIZE];
|
||||
char contentInfoPath[PATH_MAX];
|
||||
CellSysCacheParam param;
|
||||
memset(¶m, 0x00, sizeof(CellSysCacheParam));
|
||||
strlcpy(param.cacheId,CACHE_ID, sizeof(CellSysCacheParam));
|
||||
|
@ -17,14 +17,6 @@
|
||||
#ifndef _PS3_SHARED_H
|
||||
#define _PS3_SHARED_H
|
||||
|
||||
enum
|
||||
{
|
||||
CONFIG_FILE,
|
||||
SHADER_PRESET_FILE,
|
||||
INPUT_PRESET_FILE
|
||||
};
|
||||
|
||||
extern char contentInfoPath[PATH_MAX];
|
||||
extern char usrDirPath[PATH_MAX];
|
||||
extern char DEFAULT_PRESET_FILE[PATH_MAX];
|
||||
extern char DEFAULT_BORDER_FILE[PATH_MAX];
|
||||
|
Loading…
Reference in New Issue
Block a user