Merge branch 'fix/glfwcreatewindow-failure' of https://github.com/gouletr/emscripten into incoming

Conflicts:
	AUTHORS
This commit is contained in:
Alon Zakai 2015-09-11 11:32:19 -07:00
Родитель 4f5bcae85d f64c78e87c
Коммит e7aa8a2f04
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -204,4 +204,5 @@ a license to everyone to use it as detailed in LICENSE.)
* Kagami Hiiragi <kagami@genshiken.org>
* Jan Bölsche <jan@lagomorph.de>
* Sebastian Matthes <sebastianmatthes@outlook.com> (copyright owned by Volkswagen AG)
* Robert Goulet <robert.goulet@autodesk.com> (copyright owned by Autodesk, Inc.)

Просмотреть файл

@ -627,6 +627,9 @@ var LibraryGLFW = {
Module.ctx = Browser.createContext(Module['canvas'], true, true, contextAttributes);
}
// If context creation failed, do not return a valid window
if (!Module.ctx) return 0;
// Get non alive id
var win = new GLFW.Window(id, width, height, title, monitor, share);