project file updates. (grr, why has something replaced the tabs in one of the vcprojs with spaces? VS will just write the tabs back...)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3205 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
ad0db37fab
commit
42fb5a4d67
|
@ -398,7 +398,6 @@
|
|||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
|
@ -676,6 +675,10 @@
|
|||
RelativePath=".\Src\HW\SystemTimers.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\HW\BBA-TAP\TAP_Win32.cpp"
|
||||
>
|
||||
</File>
|
||||
<Filter
|
||||
Name="EXI - Expansion Interface"
|
||||
>
|
||||
|
@ -799,7 +802,6 @@
|
|||
RelativePath=".\Src\HW\MemoryInterface.cpp"
|
||||
>
|
||||
</File>
|
||||
|
||||
<File
|
||||
RelativePath=".\Src\HW\MemoryInterface.h"
|
||||
>
|
||||
|
@ -1200,7 +1202,6 @@
|
|||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
|
@ -1601,7 +1602,6 @@
|
|||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
|
@ -2002,7 +2002,6 @@
|
|||
<File
|
||||
RelativePath=".\Src\Debugger\DebugInterface.h"
|
||||
>
|
||||
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\Debugger\Dump.cpp"
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
#include "../Memmap.h"
|
||||
#include "../EXI_Device.h"
|
||||
#include "../EXI_DeviceEthernet.h"
|
||||
|
||||
bool CEXIETHERNET::deactivate()
|
||||
{
|
||||
return true;
|
||||
|
@ -30,7 +31,7 @@ bool CEXIETHERNET::isActivated()
|
|||
}
|
||||
|
||||
bool CEXIETHERNET::activate() {
|
||||
if(isActivated())
|
||||
if (isActivated())
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
#ifndef _EXIDEVICE_ETHERNET_H
|
||||
#define _EXIDEVICE_ETHERNET_H
|
||||
|
||||
|
||||
|
||||
class WriteBuffer {
|
||||
public:
|
||||
WriteBuffer(u32 s) :_size(0) { _buffer = (u8*)malloc(s*sizeof(u8)); ucapacity = s;}
|
||||
|
|
|
@ -124,6 +124,10 @@
|
|||
RelativePath=".\display.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\display.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\display_font.cpp"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue