diff options
author | Martin Gerhardy <martin.gerhardy@gmail.com> | 2013-05-07 06:50:49 +0200 |
---|---|---|
committer | Martin Gerhardy <martin.gerhardy@gmail.com> | 2013-05-07 06:50:49 +0200 |
commit | 5123418c4a37b67309e4be386ee12ccd5ea36c8c (patch) | |
tree | 53e099febf2c47f9a30101a348d54587996a6d69 /src/library_sdl.js | |
parent | 8485632cff9d1b1ffd18315aed5690e995f1ec59 (diff) |
* SDL_GL_ExtensionSupported: fixed integer value
* added myself to the AUTHORS file
Diffstat (limited to 'src/library_sdl.js')
-rw-r--r-- | src/library_sdl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_sdl.js b/src/library_sdl.js index f5112abe..8a7519b9 100644 --- a/src/library_sdl.js +++ b/src/library_sdl.js @@ -1708,7 +1708,7 @@ var LibrarySDL = { // SDL 2 SDL_GL_ExtensionSupported: function(extension) { - return Module.ctx.getExtension(extension); + return Module.ctx.getExtension(extension) | 0; }, SDL_DestroyWindow: function(window) {}, |