fix linux compile
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2589 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
866deee7f1
commit
251179b00b
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="9,00"
|
Version="9.00"
|
||||||
Name="Core"
|
Name="Core"
|
||||||
ProjectGUID="{F0B874CB-4476-4199-9315-8343D05AE684}"
|
ProjectGUID="{F0B874CB-4476-4199-9315-8343D05AE684}"
|
||||||
RootNamespace="Core"
|
RootNamespace="Core"
|
||||||
|
@ -655,14 +655,6 @@
|
||||||
RelativePath=".\Src\Hw\CPU.h"
|
RelativePath=".\Src\Hw\CPU.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
|
||||||
RelativePath=".\Src\HW\GBAPipe.cpp"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
|
||||||
RelativePath=".\Src\HW\GBAPipe.h"
|
|
||||||
>
|
|
||||||
</File>
|
|
||||||
<File
|
<File
|
||||||
RelativePath=".\Src\Hw\HW.cpp"
|
RelativePath=".\Src\Hw\HW.cpp"
|
||||||
>
|
>
|
||||||
|
@ -766,6 +758,14 @@
|
||||||
<Filter
|
<Filter
|
||||||
Name="SI - Serial Interface"
|
Name="SI - Serial Interface"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\Src\HW\GBAPipe.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\Src\HW\GBAPipe.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\Src\HW\SI.cpp"
|
RelativePath=".\Src\HW\SI.cpp"
|
||||||
>
|
>
|
||||||
|
|
|
@ -167,8 +167,8 @@ namespace GBAPipe
|
||||||
void StartServer() { }
|
void StartServer() { }
|
||||||
void ConnectAsClient() { }
|
void ConnectAsClient() { }
|
||||||
void Stop() { }
|
void Stop() { }
|
||||||
void Read(u32& data){}
|
void Read(u8& data) { }
|
||||||
void Write(u32 data){}
|
void Write(u8 data) { }
|
||||||
bool IsEnabled() { return false; }
|
bool IsEnabled() { return false; }
|
||||||
bool IsServer() { return false; }
|
bool IsServer() { return false; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,8 +19,8 @@
|
||||||
// comparing them to each other.
|
// comparing them to each other.
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef _CPUCOMPARE_H
|
#ifndef _GBAPIPE_H
|
||||||
#define _CPUCOMPARE_H
|
#define _GBAPIPE_H
|
||||||
|
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue