fix fullscreen resize

This commit is contained in:
David Rose 2006-10-03 02:17:04 +00:00
parent 2df2142906
commit 38c81198f2

View File

@ -695,7 +695,9 @@ do_fullscreen_resize(int x_size, int y_size) {
<< " bitdepth " << dwFullScreenBitDepth << ", " << " bitdepth " << dwFullScreenBitDepth << ", "
<< dm.dmDisplayFrequency << "Hz\n"; << dm.dmDisplayFrequency << "Hz\n";
system_changed_size(x_size, y_size); _properties.set_size(x_size, y_size);
set_size_and_recalc(x_size, y_size);
return true; return true;
} }