2013-06-28 16:44:10 +00:00
|
|
|
//Attiva e disattiva lo schermo intero.
|
2013-07-03 17:24:34 +00:00
|
|
|
if window_get_fullscreen() = true
|
2013-06-28 16:44:10 +00:00
|
|
|
{
|
|
|
|
window_set_fullscreen(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
window_set_fullscreen(true);
|
2015-08-01 16:10:26 +00:00
|
|
|
}
|