mirror of https://github.com/stella-emu/stella.git
libretro: remove unused variable.
This commit is contained in:
parent
c61f3e9a1d
commit
68d49f8e43
|
@ -18,9 +18,8 @@
|
|||
#include "FBSurfaceLIBRETRO.hxx"
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
FBSurfaceLIBRETRO::FBSurfaceLIBRETRO(FrameBufferLIBRETRO& buffer,
|
||||
FBSurfaceLIBRETRO::FBSurfaceLIBRETRO(FrameBufferLIBRETRO&,
|
||||
uInt32 width, uInt32 height, const uInt32* data)
|
||||
: myFB(buffer)
|
||||
{
|
||||
createSurface(width, height, data);
|
||||
}
|
||||
|
|
|
@ -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