Hey

In the manual of "video_set", there is a saying goes as "Thus setting a 1024x768 window on a 1024x768 desktop will always fail unless you remove border and title bar. "
But how to implement like this "unless"?

I tried a lot but failed, anyone help me?
I need to create a 1366*768 window on a 1366*768 desktop.
here is a fake implementation.
Code:
void main()
{
	level_load("");
	
	video_set(1366,760,0,2);
	//video_set(1366,768,0,2);
	//video_window(vector(0,0,0),nullvector,1,NULL);
	//video_window(vector(0.1,0.1,0),vector(1366,768,0),1,NULL);
	video_window(vector(0.1,0.1,0),nullvector,1,NULL);
	
	vec_set(sky_color.blue,nullvector);
}