]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/dialog_multiplayer_media_demo_startconfirm.qc
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_multiplayer_media_demo_startconfirm.qc
index 068a8217b67082f57f081f872fb277e8a1de88a4..56199502539db7527cb270d76f9a9ec21e55dc60 100644 (file)
@@ -10,15 +10,15 @@ void XonoticDemoStartConfirmDialog_fill(entity me)
        entity e;
 
        me.TR(me);
-               me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Playing a demo will disconnect you from the current match.")));
+       me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Playing a demo will disconnect you from the current match.")));
        me.TR(me);
-               me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Do you really wish to disconnect now?")));
+       me.TD(me, 1, 2, e = makeXonoticTextLabel(0.5, _("Do you really wish to disconnect now?")));
        me.TR(me);
        me.TR(me);
-               me.TD(me, 1, 1, e = makeXonoticButton(_("Yes"), '1 0 0'));
-                       e.onClick = Handle_StartDemo_Click;
-                       e.onClickEntity = demolist;
-               me.TD(me, 1, 1, e = makeXonoticButton(_("No"), '0 1 0'));
-                       e.onClick = Dialog_Close;
-                       e.onClickEntity = me;
+       me.TD(me, 1, 1, e = makeXonoticButton(_("Yes"), '1 0 0'));
+       e.onClick = Handle_StartDemo_Click;
+       e.onClickEntity = demolist;
+       me.TD(me, 1, 1, e = makeXonoticButton(_("No"), '0 1 0'));
+       e.onClick = Dialog_Close;
+       e.onClickEntity = me;
 }