mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
Update some logs
This commit is contained in:
parent
8ea1305d75
commit
a6998d593a
@ -315,7 +315,7 @@ static void *xa_init(const char *device, unsigned rate, unsigned latency,
|
||||
|
||||
bufsize = latency * rate / 1000;
|
||||
|
||||
RARCH_LOG("XAudio2: Requesting %u ms latency, using %d ms latency.\n",
|
||||
RARCH_LOG("[XAudio2]: Requesting %u ms latency, using %d ms latency.\n",
|
||||
latency, (int)bufsize * 1000 / rate);
|
||||
|
||||
xa->bufsize = bufsize * 2 * sizeof(float);
|
||||
|
@ -3423,7 +3423,7 @@ bool config_load_remap(void)
|
||||
strlcpy(remap_directory,
|
||||
settings->paths.directory_input_remapping,
|
||||
path_size);
|
||||
RARCH_LOG("Remaps: remap directory: %s\n", remap_directory);
|
||||
RARCH_LOG("[Remaps]: remap directory: %s\n", remap_directory);
|
||||
|
||||
/* Concatenate strings into full paths for core_path, game_path */
|
||||
fill_pathname_join_special_ext(core_path,
|
||||
@ -3450,7 +3450,7 @@ bool config_load_remap(void)
|
||||
/* If a game remap file exists, load it. */
|
||||
if (new_conf)
|
||||
{
|
||||
RARCH_LOG("Remaps: game-specific remap found at %s.\n", game_path);
|
||||
RARCH_LOG("[Remaps]: game-specific remap found at %s.\n", game_path);
|
||||
if (input_remapping_load_file(new_conf, game_path))
|
||||
{
|
||||
runloop_msg_queue_push(msg_hash_to_str(
|
||||
@ -3462,7 +3462,7 @@ bool config_load_remap(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_LOG("Remaps: no game-specific remap found at %s.\n", game_path);
|
||||
RARCH_LOG("[Remaps]: no game-specific remap found at %s.\n", game_path);
|
||||
input_remapping_set_defaults(false);
|
||||
}
|
||||
|
||||
@ -3472,7 +3472,7 @@ bool config_load_remap(void)
|
||||
/* If a content-dir remap file exists, load it. */
|
||||
if (new_conf)
|
||||
{
|
||||
RARCH_LOG("Remaps: content-dir-specific remap found at %s.\n", content_path);
|
||||
RARCH_LOG("[Remaps]: content-dir-specific remap found at %s.\n", content_path);
|
||||
if (input_remapping_load_file(new_conf, content_path))
|
||||
{
|
||||
runloop_msg_queue_push(msg_hash_to_str(
|
||||
@ -3484,7 +3484,7 @@ bool config_load_remap(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_LOG("Remaps: no content-dir-specific remap found at %s.\n", content_path);
|
||||
RARCH_LOG("[Remaps]: no content-dir-specific remap found at %s.\n", content_path);
|
||||
input_remapping_set_defaults(false);
|
||||
}
|
||||
|
||||
@ -3494,7 +3494,7 @@ bool config_load_remap(void)
|
||||
/* If a core remap file exists, load it. */
|
||||
if (new_conf)
|
||||
{
|
||||
RARCH_LOG("Remaps: core-specific remap found at %s.\n", core_path);
|
||||
RARCH_LOG("[Remaps]: core-specific remap found at %s.\n", core_path);
|
||||
if (input_remapping_load_file(new_conf, core_path))
|
||||
{
|
||||
runloop_msg_queue_push(
|
||||
@ -3506,7 +3506,7 @@ bool config_load_remap(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
RARCH_LOG("Remaps: no core-specific remap found at %s.\n", core_path);
|
||||
RARCH_LOG("[Remaps]: no core-specific remap found at %s.\n", core_path);
|
||||
input_remapping_set_defaults(false);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user