diff options
| author | lioncash <mathew1900@hotmail.com> | 2013-01-16 15:46:11 -0500 |
|---|---|---|
| committer | lioncash <mathew1900@hotmail.com> | 2013-01-16 15:46:11 -0500 |
| commit | 0ef3bd9c778a786ec439950f65c863d64ccf98b6 (patch) | |
| tree | 35c0cc6e03cf45eeff2496b582d3720ad75defbe /Source/Core/VideoCommon/Src/FramebufferManagerBase.h | |
| parent | 87431666639c7036ea0f5b0d499df639cefb3d51 (diff) | |
Revert "Made several variables/parameters unsigned in the DX9, DX11 and OGL plugins. They make more sense like this (given their names)."
Turns out I was wrong in my previous commit. My bad.
This reverts commit 87431666639c7036ea0f5b0d499df639cefb3d51.
Diffstat (limited to 'Source/Core/VideoCommon/Src/FramebufferManagerBase.h')
| -rw-r--r-- | Source/Core/VideoCommon/Src/FramebufferManagerBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/FramebufferManagerBase.h b/Source/Core/VideoCommon/Src/FramebufferManagerBase.h index 902e781a70..e529bb1a39 100644 --- a/Source/Core/VideoCommon/Src/FramebufferManagerBase.h +++ b/Source/Core/VideoCommon/Src/FramebufferManagerBase.h @@ -17,7 +17,7 @@ struct XFBSourceBase // TODO: only DX9 uses the width/height params virtual void Draw(const MathUtil::Rectangle<float> &sourcerc, - const MathUtil::Rectangle<float> &drawrc, u32 width, u32 height) const = 0; + const MathUtil::Rectangle<float> &drawrc, int width, int height) const = 0; virtual void DecodeToTexture(u32 xfbAddr, u32 fbWidth, u32 fbHeight) = 0; |
