mirror of https://github.com/stella-emu/stella.git
Fix minor warning in Xcode.
This commit is contained in:
parent
578c19a588
commit
d89e658d68
|
@ -21,16 +21,17 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
BilinearBlitter::BilinearBlitter(FrameBufferSDL2& fb, bool interpolate) :
|
||||
mySrcRect({0, 0, 0, 0}),
|
||||
myDstRect({0, 0, 0, 0}),
|
||||
myTexture(nullptr),
|
||||
mySecondaryTexture(nullptr),
|
||||
mySrcRect({0, 0, 0, 0}),
|
||||
myDstRect({0, 0, 0, 0}),
|
||||
myInterpolate(interpolate),
|
||||
myTexturesAreAllocated(false),
|
||||
myRecreateTextures(false),
|
||||
myStaticData(nullptr),
|
||||
myFB(fb)
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
BilinearBlitter::~BilinearBlitter()
|
||||
|
|
|
@ -21,16 +21,18 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
QisBlitter::QisBlitter(FrameBufferSDL2& fb) :
|
||||
mySrcRect({0, 0, 0, 0}),
|
||||
myDstRect({0, 0, 0, 0}),
|
||||
mySrcTexture(nullptr),
|
||||
myIntermediateTexture(nullptr),
|
||||
mySecondaryIntermedateTexture(nullptr),
|
||||
mySrcRect({0, 0, 0, 0}),
|
||||
myIntermediateRect({0, 0, 0, 0}),
|
||||
myDstRect({0, 0, 0, 0}),
|
||||
myTexturesAreAllocated(false),
|
||||
myRecreateTextures(false),
|
||||
myStaticData(nullptr),
|
||||
myFB(fb)
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
QisBlitter::~QisBlitter()
|
||||
|
|
Loading…
Reference in New Issue