mirror of
https://github.com/libretro/RetroArch
synced 2025-02-27 09:41:14 +00:00
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 \
|
||||
fifo_buffer.o \
|
||||
compat/compat.o \
|
||||
audio/null.o \
|
||||
cheats.o \
|
||||
gfx/null.o \
|
||||
conf/config_file.o \
|
||||
input/null.o \
|
||||
screenshot.o \
|
||||
gfx/scaler/scaler.o \
|
||||
gfx/scaler/pixconv.o \
|
||||
|
@ -19,11 +19,8 @@ OBJ = retroarch.o \
|
||||
screenshot.o \
|
||||
cheats.o \
|
||||
audio/utils.o \
|
||||
audio/null.o \
|
||||
input/null.o \
|
||||
input/overlay.o \
|
||||
fifo_buffer.o \
|
||||
gfx/null.o \
|
||||
media/rarch.o \
|
||||
gfx/scaler/scaler.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",
|
||||
info->library_name, info->library_version);
|
||||
snprintf(g_extern.system.valid_extensions, sizeof(g_extern.system.valid_extensions),
|
||||
info->valid_extensions ? info->valid_extensions : DEFAULT_EXT);
|
||||
strlcpy(g_extern.system.valid_extensions, info->valid_extensions ? info->valid_extensions : DEFAULT_EXT,
|
||||
sizeof(g_extern.system.valid_extensions));
|
||||
}
|
||||
|
||||
static void init_system_av_info(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user