From fa8a4cdbb57e6036570088ad2b505d2dff6f7ec9 Mon Sep 17 00:00:00 2001 From: Scott Mansell Date: Tue, 20 Aug 2013 23:25:24 +1200 Subject: [PATCH] Corrected names of GetXFBAddress* functions in header. They were named incorrectly in VideoInterface.h, but because nobody used them outside of VideoInterface.cpp where they were decleared until now, this hasn't been an issue. --- Source/Core/Core/Src/HW/VideoInterface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Src/HW/VideoInterface.h b/Source/Core/Core/Src/HW/VideoInterface.h index 325d43f080..59f21a6b82 100644 --- a/Source/Core/Core/Src/HW/VideoInterface.h +++ b/Source/Core/Core/Src/HW/VideoInterface.h @@ -333,8 +333,8 @@ union UVIDTVStatus void Write32(const u32 _uValue, const u32 _uAddress); // returns a pointer to the current visible xfb - u8* GetXFBPointerTop(); - u8* GetXFBPointerBottom(); + u32 GetXFBAddressTop(); + u32 GetXFBAddressBottom(); // Update and draw framebuffer void Update();