_toggle_video is engine internally function,
but you can write you own function.
Here is the originally _toggle_video code:
code:
function _toggle_video()
{
if (key_shift == 0)
{
temp = video_mode + 1;
again:
if (temp >= 12) { temp = 1; }
switch_video temp,0,0;
if (result == 0)
{
temp += 1;
goto again;
}
}
else
{
temp = video_mode - 1;
again2:
if (temp < 1) { temp = 12; }
switch_video temp,0,0;
if (result == 0)
{
temp -= 1;
goto again2;
}
}
}
If you press F5, you also call this function.
Rich E.
P.S.: My english is bad... very, very bad.