diff options
Diffstat (limited to 'src/viewport.cpp')
-rw-r--r-- | src/viewport.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/viewport.cpp b/src/viewport.cpp index 0d97d8cd0..8d2200f29 100644 --- a/src/viewport.cpp +++ b/src/viewport.cpp @@ -1666,10 +1666,9 @@ static void MarkViewportDirty(const ViewPort *vp, int left, int top, int right, */ void MarkAllViewportsDirty(int left, int top, int right, int bottom) { - Window **wz; - - FOR_ALL_WINDOWS(wz) { - ViewPort *vp = (*wz)->viewport; + Window *w; + FOR_ALL_WINDOWS_FROM_BACK(w) { + ViewPort *vp = w->viewport; if (vp != NULL) { assert(vp->width != 0); MarkViewportDirty(vp, left, top, right, bottom); |