Document that the current Hercules mode thumbnail scaler code is pretty much aimed for SCUMM games.

svn-id: r48736
This commit is contained in:
Johannes Schickel 2010-04-19 20:44:25 +00:00
parent 498d1da182
commit d163686d2d

View File

@ -162,6 +162,10 @@ static bool createThumbnail(Graphics::Surface &out, Graphics::Surface &in) {
in = newscreen;
} else if (width == 720) {
// Special case to handle Hercules mode
//
// NOTE: This code is pretty SCUMM specific.
// For other games this code might cut off
// not only the menu, but also other graphics.
width = 640;
inHeight = 400;