repo.or.cz
/
0ad.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
GUI cleanup.
[0ad.git]
/
binaries
/
data
/
mods
/
public
/
gui
/
common
/
functions_utility_error.js
blob
856518f3be761bb81b11209dbaf04bfb27cc2e4c
1
function cancelOnError(msg)
2
{
3
Engine.EndGame();
4
5
Engine.SwitchGuiPage("page_pregame.xml");
6
7
if (msg)
8
Engine.PushGuiPage("page_msgbox.xml", {
9
"width": 500,
10
"height": 200,
11
"message": '[font="sans-bold-18"]' + msg + '[/font]',
12
"title": translate("Loading Aborted"),
13
"mode": 2
14
});
15
16
Engine.ResetCursor();
17
}