Deltarune (Chapter 2) script viewer

← back to main script listing

gml_GlobalScript_scr_windowcaption

(view raw script w/o annotations or w/e)
1
function scr_windowcaption
scr_windowcaption

function scr_windowcaption(arg0) { if (global.tempflag[10] != 1 && global.chapter == 1) window_set_caption(arg0); else window_set_caption("DELTARUNE Chapter " + string(global.chapter)); }
(arg0)
2
{
3
    if (global.tempflag[10] != 1 && global.chapter == 1)
4
        window_set_caption(arg0);
5
    else
6
        window_set_caption("DELTARUNE Chapter " + string(global.chapter));
7
}