示例#1
0
文件: USB.cpp 项目: tsiru/pcsx2
EXPORT_C_(void) USBshutdown()
{
	// Yes, we close things in the Shutdown routine, and
	// don't do anything in the close routine.
	USBLog.Close();
	
	free(usbregs);
	usbregs = NULL;
}
示例#2
0
文件: USB.cpp 项目: tsiru/pcsx2
EXPORT_C_(void)  USBsetLogDir(const char* dir)
{
	// Get the path to the log directory.
	s_strLogPath = (dir==NULL) ? "logs" : dir;
	
	// Reload the log file after updated the path
	USBLog.Close();
	LogInit();
}
示例#3
0
文件: DEV9.cpp 项目: Hourousha/pcsx2
EXPORT_C_(void) DEV9shutdown()
{
	Dev9Log.WriteLn("Shutting down Dev9null.");
	Dev9Log.Close();
}