mirror of https://github.com/stella-emu/stella.git
libretro: remove unused variable.
This commit is contained in:
parent
c61f3e9a1d
commit
68d49f8e43
|
@ -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,
|
||||
|
|
|
@ -71,8 +71,6 @@ class FBSurfaceLIBRETRO : public FBSurface
|
|||
FBSurfaceLIBRETRO& operator=(FBSurfaceLIBRETRO&&) = delete;
|
||||
|
||||
private:
|
||||
FrameBufferLIBRETRO& myFB;
|
||||
|
||||
Common::Rect mySrcGUIR, myDstGUIR;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue