mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-07 12:16:45 +00:00
Rename variable
This commit is contained in:
parent
f84b6e9020
commit
8da9acd1fe
@ -50,7 +50,7 @@
|
||||
* will write to this file. */
|
||||
static FILE *log_file = NULL;
|
||||
static bool main_verbosity = false;
|
||||
static bool initialized = false;
|
||||
static bool log_file_initialized = false;
|
||||
|
||||
void verbosity_enable(void)
|
||||
{
|
||||
@ -87,14 +87,15 @@ void *retro_main_log_file(void)
|
||||
|
||||
void retro_main_log_file_init(const char *path)
|
||||
{
|
||||
if (initialized)
|
||||
if (log_file_initialized)
|
||||
return;
|
||||
|
||||
log_file = stderr;
|
||||
if (path == NULL)
|
||||
return;
|
||||
|
||||
log_file = fopen(path, "wb");
|
||||
initialized = true;
|
||||
log_file_initialized = true;
|
||||
}
|
||||
|
||||
void retro_main_log_file_deinit(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user