Пример #1
0
void TCOD_sys_get_current_resolution(int *w, int *h) {
	sfVideoMode mode = sfVideoMode_GetDesktopMode(); 
	*w=mode.Width;
	*h=mode.Height;	
}
Пример #2
0
void w_sfVideoMode_GetDesktopMode(sfVideoMode *Mode)
{
    *Mode = sfVideoMode_GetDesktopMode();
}