svn-id: r33201
This commit is contained in:
Vicent Marti 2008-07-22 13:33:32 +00:00
parent daa32f77f8
commit a9ab9c0189
2 changed files with 2 additions and 3 deletions

View File

@ -303,6 +303,7 @@ void ThemeRenderer::queueDD(DrawData type, const Common::Rect &r, uint32 dynamic
DrawQueue q;
q.type = type;
q.area = r;
q.area.clip(_screen->w, _screen->h);
q.dynData = dynamic;
if (_buffering) {
@ -323,6 +324,7 @@ void ThemeRenderer::queueDDText(DrawData type, const Common::Rect &r, const Comm
DrawQueueText q;
q.type = type;
q.area = r;
q.area.clip(_screen->w, _screen->h);
q.text = text;
q.colorId = colorId;
q.align = align;

View File

@ -429,9 +429,6 @@ protected:
* Handles all the dirty squares in the list, merges and optimizes
* them when possible and draws them to the screen.
* Called from updateScreen()
*
* TODO: This function is partly implemented, but currently not used.
* Currently the whole frame is drawn to the screen.
*/
void renderDirtyScreen();