diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-12 11:24:16 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-12 11:24:16 -0800 |
commit | a5bd3ed73db5f3d499eab532034bb9f6960df28f (patch) | |
tree | aab395631955f7359389f344b75432a784886799 /tests/hello_world.js | |
parent | ae02feec361db8a69d51a69d51b02ea742212a94 (diff) |
support for generating html in emcc, and a test for that that also tests SDL, and some fixes for SDL
Diffstat (limited to 'tests/hello_world.js')
-rw-r--r-- | tests/hello_world.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/hello_world.js b/tests/hello_world.js index 3fd19d53..530f5d4c 100644 --- a/tests/hello_world.js +++ b/tests/hello_world.js @@ -43,6 +43,9 @@ if (ENVIRONMENT_IS_NODE) { printErr = function(x) { console.log(x); }; + if (typeof print === 'undefined') { + print = printErr; + } read = function(url) { var xhr = new XMLHttpRequest(); |