diff options
| author | Torbjörn Andersson | 2005-04-16 16:56:16 +0000 | 
|---|---|---|
| committer | Torbjörn Andersson | 2005-04-16 16:56:16 +0000 | 
| commit | 8ef991fe4a489d0baf196d450cef7ab6edee8530 (patch) | |
| tree | 851af185177428c131c22dbda731614fbd94cb14 | |
| parent | bffeb58d06f89fc49d64c349d3d8cfa4f65a0664 (diff) | |
| download | scummvm-rg350-8ef991fe4a489d0baf196d450cef7ab6edee8530.tar.gz scummvm-rg350-8ef991fe4a489d0baf196d450cef7ab6edee8530.tar.bz2 scummvm-rg350-8ef991fe4a489d0baf196d450cef7ab6edee8530.zip | |
Clarified the second comment, and removed the overlap between the two.
svn-id: r17636
| -rw-r--r-- | gui/about.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/gui/about.cpp b/gui/about.cpp index 9800f47786..6312cb0bcd 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -243,8 +243,10 @@ void AboutDialog::handleTickle() {  }  void AboutDialog::handleScreenChanged() { -	// The screen has changed. Reset the canvas, and issue a full redraw. -	// Until we have a new canvas, don't draw any credits text. +	// The screen has changed. That means the overlay colors in the canvas +	// may no longer be correct. Reset it, and issue a full redraw. +	// TODO: We could check if the bit format has changed, like we do in +	// the MPEG player.  	free(_canvas.pixels);  	_canvas.pixels = NULL;  	draw(); | 
