From 251179b00b4cef9f8843da23ed9e96369271d77b Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sat, 7 Mar 2009 06:34:54 +0000 Subject: [PATCH] fix linux compile git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2589 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Core.vcproj | 18 +++++++++--------- Source/Core/Core/Src/HW/GBAPipe.cpp | 4 ++-- Source/Core/Core/Src/HW/GBAPipe.h | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Source/Core/Core/Core.vcproj b/Source/Core/Core/Core.vcproj index da39230861..1ccefc0c89 100644 --- a/Source/Core/Core/Core.vcproj +++ b/Source/Core/Core/Core.vcproj @@ -1,7 +1,7 @@ - - - - @@ -766,6 +758,14 @@ + + + + diff --git a/Source/Core/Core/Src/HW/GBAPipe.cpp b/Source/Core/Core/Src/HW/GBAPipe.cpp index fad046b8e9..a45520f1f1 100644 --- a/Source/Core/Core/Src/HW/GBAPipe.cpp +++ b/Source/Core/Core/Src/HW/GBAPipe.cpp @@ -167,8 +167,8 @@ namespace GBAPipe void StartServer() { } void ConnectAsClient() { } void Stop() { } - void Read(u32& data){} - void Write(u32 data){} + void Read(u8& data) { } + void Write(u8 data) { } bool IsEnabled() { return false; } bool IsServer() { return false; } } diff --git a/Source/Core/Core/Src/HW/GBAPipe.h b/Source/Core/Core/Src/HW/GBAPipe.h index 18d040683f..791208a7a0 100644 --- a/Source/Core/Core/Src/HW/GBAPipe.h +++ b/Source/Core/Core/Src/HW/GBAPipe.h @@ -19,8 +19,8 @@ // comparing them to each other. // -#ifndef _CPUCOMPARE_H -#define _CPUCOMPARE_H +#ifndef _GBAPIPE_H +#define _GBAPIPE_H #include "Common.h"