SCI/newgui: Changed code for graphSaveUpscaledHiresBox to not scale the position, its not needed and would actually result in a crash cause of 2 times scaling.

svn-id: r45569
This commit is contained in:
Martin Kiewitz 2009-10-31 18:00:22 +00:00
parent 9450661f72
commit cda9b293fd

View File

@ -456,8 +456,6 @@ reg_t SciGui::graphSaveBox(Common::Rect rect, uint16 screenMask) {
}
reg_t SciGui::graphSaveUpscaledHiresBox(Common::Rect rect) {
rect.right *= 2;
rect.bottom *= 2;
return _gfx->BitsSave(rect, SCI_SCREEN_MASK_DISPLAY);
}