From 74a25a20698f4c8cb64c6a361b8970251da9d348 Mon Sep 17 00:00:00 2001 From: Asdow <20314541+Asdow@users.noreply.github.com> Date: Sun, 8 Oct 2023 16:46:36 +0300 Subject: [PATCH] Remove empty function --- Standard Gaming Platform/soundman.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Standard Gaming Platform/soundman.cpp b/Standard Gaming Platform/soundman.cpp index a2f5869e..743dd087 100644 --- a/Standard Gaming Platform/soundman.cpp +++ b/Standard Gaming Platform/soundman.cpp @@ -61,7 +61,6 @@ FILE *SndDebug; // Debug logging void SoundLog(CHAR8 *strMessage); -void InitLogging(); // Cache system BOOLEAN SoundInitCache(void); @@ -213,7 +212,6 @@ BOOLEAN InitializeSoundManager(void) { UINT32 uiCount; - InitLogging(); if(fSoundSystemInit) { @@ -1871,15 +1869,3 @@ void SoundLog(CHAR8 *strMessage) } s_SoundLog; SGP_LOG(s_SoundLog.id, vfs::String::widen(strMessage,strlen(strMessage))); } - -//***************************************************************************************** -// InitLogging -// Creates empty log file -// -// Returns nothing -// -// Created: 10.12.2005 Lesh -//***************************************************************************************** -void InitLogging() -{ -}