mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-13 16:01:05 +00:00
[LOG] Fix alignment
This commit is contained in:
parent
5cb2e9f54c
commit
dcd76a0d2d
@ -2396,11 +2396,11 @@ bool rarch_ctl(enum rarch_ctl_state state, void *data)
|
||||
runtime_log_convert_usec2hms(libretro_core_runtime_usec, &hours, &minutes, &seconds);
|
||||
|
||||
n = snprintf(log, sizeof(log),
|
||||
"Content ran for a total of: %02u hours, %02u minutes, %02u seconds.\n ",
|
||||
"Content ran for a total of: %02u hours, %02u minutes, %02u seconds.",
|
||||
hours, minutes, seconds);
|
||||
if ((n < 0) || (n >= PATH_MAX_LENGTH))
|
||||
n = 0; /* Just silence any potential gcc warnings... */
|
||||
RARCH_LOG(log);
|
||||
RARCH_LOG("%s\n",log);
|
||||
|
||||
/* Only write to file if logging is enabled *and* content has run
|
||||
* for a non-zero length of time */
|
||||
|
Loading…
x
Reference in New Issue
Block a user