mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
bc3679e928
- Updated Emscripten to version 3.1.8 (+ additional patches) - Support for dynamic plugins - Adding ScummvmFS with support for HTTP Range Requests for game data - Automated games/demos bundling and ini config generation during build - Allow passing CLI arguments via fragment identifier of the website (i.e. scummvm.html#—debuglevel=9 ) - UI improvements with nicer status messages, splash screen + favicon - Fixed HiDPI handling and responsiveness - Bugfix: Don't crash if gamepad support isn't available
5 lines
253 B
JavaScript
5 lines
253 B
JavaScript
// Workaround for https://github.com/emscripten-core/emscripten/pull/9803
|
|
// which results in mouse events not working anymore after context switches
|
|
// (i.e. when launching a game)
|
|
/*global JSEvents*/
|
|
JSEvents.removeAllHandlersOnTarget = function(){}; |