From 4d39defcb59600513ff65a688c54f3d6b13ca63a Mon Sep 17 00:00:00 2001 From: "SND\\weimingzhi_cp" Date: Sat, 8 May 2010 01:16:38 +0000 Subject: more cleanups. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47580 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- libpcsxcore/misc.c | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'libpcsxcore/misc.c') diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c index 6d4b9e92..0d801f7b 100644 --- a/libpcsxcore/misc.c +++ b/libpcsxcore/misc.c @@ -18,7 +18,7 @@ ***************************************************************************/ /* -* Miscellaneous functions, including savesates and CD-ROM loading. +* Miscellaneous functions, including savestates and CD-ROM loading. */ #include "misc.h" @@ -26,9 +26,6 @@ #include "mdec.h" #include "ppf.h" -int Log = 0; -FILE *emuLog = NULL; - char CdromId[10] = ""; char CdromLabel[33] = ""; @@ -638,22 +635,6 @@ int RecvPcsxInfo() { return 0; } -void __Log(char *fmt, ...) { - va_list list; -#ifdef LOG_STDOUT - char tmp[1024]; -#endif - - va_start(list, fmt); -#ifndef LOG_STDOUT - vfprintf(emuLog, fmt, list); -#else - vsprintf(tmp, fmt, list); - SysPrintf(tmp); -#endif - va_end(list); -} - // remove the leading and trailing spaces in a string void trim(char *str) { int pos = 0; -- cgit v1.2.3