From e005044f64d2c417051f0e63627b359887b86299 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 1 Feb 2020 23:56:51 +0100 Subject: [PATCH] Remove retro_main_log_file function --- verbosity.c | 5 ----- verbosity.h | 2 -- 2 files changed, 7 deletions(-) diff --git a/verbosity.c b/verbosity.c index 79bceb31d0..fb6d76fd61 100644 --- a/verbosity.c +++ b/verbosity.c @@ -132,11 +132,6 @@ bool *verbosity_get_ptr(void) return &main_verbosity; } -void *retro_main_log_file(void) -{ - return log_file_fp; -} - void retro_main_log_file_init(const char *path, bool append) { if (log_file_initialized) diff --git a/verbosity.h b/verbosity.h index 7f18a67705..8bd38fd7ad 100644 --- a/verbosity.h +++ b/verbosity.h @@ -41,8 +41,6 @@ void verbosity_set_log_level(unsigned level); bool *verbosity_get_ptr(void); -void *retro_main_log_file(void); - void retro_main_log_file_deinit(void); void retro_main_log_file_init(const char *path, bool append);