258a4163ae
gles renderer can use fbos now. webgl now saves configs+savedgames persistently using localstorage. misc startup/manifest refinements. make nacl compile again. webgl port can now use #stuff to select different manifest files. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4733 fc73d0e0-1445-4013-8a0c-d673dee63da5
18 lines
No EOL
553 B
JavaScript
18 lines
No EOL
553 B
JavaScript
Module['preRun'] = function()
|
|
{
|
|
};
|
|
|
|
{
|
|
Module['arguments'] = ['-nohome'];
|
|
|
|
var man = window.location.protocol+'//'+window.location.host+window.location.pathname + '.fmf';
|
|
if (window.location.hash != "")
|
|
man = window.location.hash.substring(1);
|
|
|
|
Module['arguments'] = Module['arguments'].concat(['-manifest', man]);
|
|
// use query string in URL as command line
|
|
if (!document.referrer) {
|
|
qstring = decodeURIComponent(window.location.search.substring(1)).split(" ");
|
|
Module['arguments'] = Module['arguments'].concat(qstring);
|
|
}
|
|
} |