Description
Game does not capture cursor in windowed mode. This makes native window mode (-win command line) unusable.
GenTool fixes this by using Windows ClipCursor function.
https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-clipcursor
Note that ClipCursor must be lifted when minimizing game out of full screen when using 2 monitors, otherwise cursor will remain captured on main screen. This can be done by calling ClipCursor(0) on Direct3DDevice8::Reset.