Fix a bunch of compiler warnings, delete some unused code

This commit is contained in:
Henrik Rydgard 2016-03-13 15:02:14 +01:00
parent ec6559537b
commit c8457d39ed
9 changed files with 22 additions and 63 deletions

View file

@ -505,7 +505,7 @@ void FramebufferManagerCommon::NotifyVideoUpload(u32 addr, int size, int width,
ResizeFramebufFBO(vfb, width, size / (bpp * width));
vfb->fb_stride = width;
// This might be a bit wider than necessary, but we'll redetect on next render.
vfb->width = vfb->width = width;
vfb->width = width;
}
}
}