diff options
| author | degasus <wickmarkus@web.de> | 2016-12-26 21:33:57 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2016-12-26 22:10:32 +0100 |
| commit | abf9bb170bf954220a50921a10f57eaa30e17779 (patch) | |
| tree | 426fe0f2604b147b4869ff9b3e87706a24c3d3a9 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 04f319066dd13917dc652855eec3614bc79c56f7 (diff) | |
TextureCache: Drop unused parameter in backend API.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 5d725d28fa..80cb3fc814 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -65,8 +65,8 @@ private: TCacheEntry(const TCacheEntryConfig& _config) : TCacheEntryBase(_config) {} ~TCacheEntry() {} void Load(const u8* buffer, u32 width, u32 height, u32 expanded_width, u32 level) override {} - void FromRenderTarget(u8* dst, bool is_depth_copy, const EFBRectangle& srcRect, - bool scaleByHalf, unsigned int cbufid, const float* colmat) override + void FromRenderTarget(bool is_depth_copy, const EFBRectangle& srcRect, bool scaleByHalf, + unsigned int cbufid, const float* colmat) override { EfbCopy::CopyEfb(); } |
