Display Mode
Posted: 30.11.2003, 18:03
I don't know if anyone has already noticed that bug but when you select display mode, there always missing the last one (the best one !).
I've corrected that bug :
winmain.cpp => in function EnumerateDisplayModes() the line
modes->resize(keepIter - modes->begin());
shoulb be
modes->resize(keepIter - modes->begin() + 1);
Finally I wan run fullscreen in 1280*1024*32 !!! (for my monitor of course)
I've corrected that bug :
winmain.cpp => in function EnumerateDisplayModes() the line
modes->resize(keepIter - modes->begin());
shoulb be
modes->resize(keepIter - modes->begin() + 1);
Finally I wan run fullscreen in 1280*1024*32 !!! (for my monitor of course)