mirror of https://github.com/PCSX2/pcsx2.git
Changed small logging code to something a little nicer :p
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@65 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
79bdfb72f8
commit
09bb4dd533
|
@ -104,11 +104,11 @@ void __Log(char *fmt, ...);
|
|||
|
||||
#else // PCSX2_DEVBUILD
|
||||
|
||||
#define varLog 0
|
||||
#define Log 0
|
||||
|
||||
//NOTE: uncomment these if you want them in release to public builds
|
||||
|
||||
//#define varLog 0
|
||||
//#define Log 0
|
||||
//
|
||||
//#define CPU_LOG 0&&
|
||||
//#define MEM_LOG 0&&
|
||||
//#define HW_LOG 0&&
|
||||
|
|
|
@ -175,11 +175,7 @@ void SaveConfig() {
|
|||
//Misc
|
||||
sprintf(szValue,"%u",Conf->Patch);
|
||||
WritePrivateProfileString("Misc","Patch",szValue,szIniFile);
|
||||
#ifdef PCSX2_DEVBUILD
|
||||
sprintf(szValue,"%x",varLog);
|
||||
#else
|
||||
sprintf(szValue,"%x",0);
|
||||
#endif
|
||||
WritePrivateProfileString("Misc","varLog",szValue,szIniFile);
|
||||
sprintf(szValue,"%u",Conf->Hacks);
|
||||
WritePrivateProfileString("Misc","Hacks",szValue,szIniFile);
|
||||
|
|
Loading…
Reference in New Issue