Remove unnecessary nullptr test on nonnull parameter

gcc-6 warns about this test because the caller is not permitted to pass
nullptr here, so the test is unnecessary.
This commit is contained in:
Kp 2016-09-26 00:50:09 +00:00
parent bf7995ade2
commit ef6f803200

View file

@ -1512,7 +1512,7 @@ static int ogl_loadtexture (const uint8_t *data, int dxo, int dyo, ogl_texture &
auto *bufP = texbuf.get();
const uint8_t *outP = texbuf.get();
if (data) {
{
if (bm_flags >= 0)
ogl_filltexbuf (data, texbuf.get(), tex.lw, tex.w, tex.h, dxo, dyo, tex.tw, tex.th,
tex.format, bm_flags, data_format);