Added logging files to SConscript

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@753 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-10-03 05:51:55 +00:00
parent 2bc4ea5362
commit d00ea2cf43
3 changed files with 6 additions and 2 deletions

View File

@ -209,7 +209,7 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize)
} }
// read the data and send it to the VideoPlugin // read the data and send it to the VideoPlugin
u8 *uData = video_initialize.pGetMemoryPointer(_fifo.CPReadPointer); u8 *uData = video_initialize.pGetMemoryPointer(_fifo.CPReadPointer);
#ifdef _WIN32 #ifdef _WIN32
EnterCriticalSection(&_fifo.sync); EnterCriticalSection(&_fifo.sync);
#else #else
@ -225,6 +225,7 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize)
Common::InterlockedExchangeAdd((int*)&_fifo.CPReadWriteDistance, -32); Common::InterlockedExchangeAdd((int*)&_fifo.CPReadWriteDistance, -32);
_fifo.sync->Leave(); _fifo.sync->Leave();
#endif #endif
// increase the ReadPtr // increase the ReadPtr
if (_fifo.CPReadPointer >= _fifo.CPEnd) if (_fifo.CPReadPointer >= _fifo.CPEnd)
{ {

View File

@ -21,7 +21,6 @@ bool AXTask(u32& _uMail)
{ {
// --------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------
// SSBM: We get the addr 8049cf00, first we always get 0 // SSBM: We get the addr 8049cf00, first we always get 0
static int last_valid_command = 0;
u16 iCommand = Memory_Read_U16(uAddress); u16 iCommand = Memory_Read_U16(uAddress);
uAddress += 2; uAddress += 2;
// --------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------

View File

@ -22,6 +22,10 @@ files = [
"opcodes.cpp", "opcodes.cpp",
"Tools.cpp", "Tools.cpp",
"main.cpp", "main.cpp",
"Logging/ReadPBs.cpp",
"Logging/Console.cpp",
"Logging/Logging.cpp",
"Logging/AXTask.cpp",
] ]
lleenv = env.Clone() lleenv = env.Clone()