diff --git a/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp b/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp index fe5c127491..457065afc4 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/TextureMngr.cpp @@ -372,8 +372,8 @@ void TextureMngr::CopyRenderTargetToTexture(u32 address, bool bFromZBuffer, bool entry.frameCount = frameCount; int mult = bScaleByHalf?2:1; - int w = (abs(source->right-source->left)/mult+7)&~7; - int h = (abs(source->bottom-source->top)/mult+7)&~7; + int w = (abs(source->right-source->left)/mult); + int h = (abs(source->bottom-source->top)/mult); GL_REPORT_ERRORD();