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
File diff suppressed because it is too large
Load Diff
|
@ -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