Don't compile in null drivers for CLI.
This commit is contained in:
parent
e829fd8df9
commit
f739fc875e
3
Makefile
3
Makefile
|
@ -17,11 +17,8 @@ OBJ = retroarch.o \
|
||||||
patch.o \
|
patch.o \
|
||||||
fifo_buffer.o \
|
fifo_buffer.o \
|
||||||
compat/compat.o \
|
compat/compat.o \
|
||||||
audio/null.o \
|
|
||||||
cheats.o \
|
cheats.o \
|
||||||
gfx/null.o \
|
|
||||||
conf/config_file.o \
|
conf/config_file.o \
|
||||||
input/null.o \
|
|
||||||
screenshot.o \
|
screenshot.o \
|
||||||
gfx/scaler/scaler.o \
|
gfx/scaler/scaler.o \
|
||||||
gfx/scaler/pixconv.o \
|
gfx/scaler/pixconv.o \
|
||||||
|
|
|
@ -19,11 +19,8 @@ OBJ = retroarch.o \
|
||||||
screenshot.o \
|
screenshot.o \
|
||||||
cheats.o \
|
cheats.o \
|
||||||
audio/utils.o \
|
audio/utils.o \
|
||||||
audio/null.o \
|
|
||||||
input/null.o \
|
|
||||||
input/overlay.o \
|
input/overlay.o \
|
||||||
fifo_buffer.o \
|
fifo_buffer.o \
|
||||||
gfx/null.o \
|
|
||||||
media/rarch.o \
|
media/rarch.o \
|
||||||
gfx/scaler/scaler.o \
|
gfx/scaler/scaler.o \
|
||||||
gfx/scaler/pixconv.o \
|
gfx/scaler/pixconv.o \
|
||||||
|
|
|
@ -2604,8 +2604,8 @@ void rarch_init_system_info(void)
|
||||||
|
|
||||||
snprintf(g_extern.title_buf, sizeof(g_extern.title_buf), "RetroArch : %s %s",
|
snprintf(g_extern.title_buf, sizeof(g_extern.title_buf), "RetroArch : %s %s",
|
||||||
info->library_name, info->library_version);
|
info->library_name, info->library_version);
|
||||||
snprintf(g_extern.system.valid_extensions, sizeof(g_extern.system.valid_extensions),
|
strlcpy(g_extern.system.valid_extensions, info->valid_extensions ? info->valid_extensions : DEFAULT_EXT,
|
||||||
info->valid_extensions ? info->valid_extensions : DEFAULT_EXT);
|
sizeof(g_extern.system.valid_extensions));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void init_system_av_info(void)
|
static void init_system_av_info(void)
|
||||||
|
|
Loading…
Reference in New Issue