mirror of https://github.com/mgba-emu/mgba.git
Squelch a compiler warning about an uninitialized variable
This commit is contained in:
parent
f8449482de
commit
d6a4fbd25a
|
@ -1104,6 +1104,7 @@ static inline void _compositeNoBlendNoObjwin(struct GBAVideoSoftwareRenderer* re
|
||||||
int x; \
|
int x; \
|
||||||
int mosaicWait = outX % mosaicH; \
|
int mosaicWait = outX % mosaicH; \
|
||||||
int carryData = 0; \
|
int carryData = 0; \
|
||||||
|
paletteData = 0; /* Quiets compiler warning */ \
|
||||||
DRAW_BACKGROUND_MODE_0_MOSAIC_ ## BPP (BLEND, OBJWIN) \
|
DRAW_BACKGROUND_MODE_0_MOSAIC_ ## BPP (BLEND, OBJWIN) \
|
||||||
return; \
|
return; \
|
||||||
} \
|
} \
|
||||||
|
|
Loading…
Reference in New Issue