libretro: remove unused variable.

This commit is contained in:
Stephen Anthony 2019-05-15 13:53:46 -02:30
parent c61f3e9a1d
commit 68d49f8e43
2 changed files with 2 additions and 5 deletions

View File

@ -18,12 +18,11 @@
#include "FBSurfaceLIBRETRO.hxx"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FBSurfaceLIBRETRO::FBSurfaceLIBRETRO(FrameBufferLIBRETRO& buffer,
FBSurfaceLIBRETRO::FBSurfaceLIBRETRO(FrameBufferLIBRETRO&,
uInt32 width, uInt32 height, const uInt32* data)
: myFB(buffer)
{
createSurface(width, height, data);
}
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void FBSurfaceLIBRETRO::createSurface(uInt32 width, uInt32 height,

View File

@ -71,8 +71,6 @@ class FBSurfaceLIBRETRO : public FBSurface
FBSurfaceLIBRETRO& operator=(FBSurfaceLIBRETRO&&) = delete;
private:
FrameBufferLIBRETRO& myFB;
Common::Rect mySrcGUIR, myDstGUIR;
private: