ClassiCube icon indicating copy to clipboard operation
ClassiCube copied to clipboard

Windows: Can't resize to less than 120 pixels wide

Open UnknownShadow200 opened this issue 4 years ago • 0 comments

Basis code for a fix

case WM_GETMINMAXINFO:
{
  MINMAXINFO* mmi = (MINMAXINFO*)lParam;
  mmi->ptMinTrackSize.x = 1;
  break;
}

then /client res 64 64`, close game, and when you next start game, it will be 64x64 in size.

For some reason though even with this fix, /client res still won't let you resize below 120 wide, and you still can't manually resize the game below 120 wide

UnknownShadow200 avatar May 11 '21 09:05 UnknownShadow200