-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Inline pthread worker.js file into the main output file #21701
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2907,14 +2907,14 @@ var LibrarySDL = { | |
return SDL.setGetVolume(SDL.music, volume); | ||
}, | ||
|
||
Mix_LoadMUS_RW__docs: '/** @param {number} a1 */', | ||
Mix_LoadMUS_RW: 'Mix_LoadWAV_RW', | ||
Mix_LoadMUS_RW__deps: ['Mix_LoadWAV_RW'], | ||
Mix_LoadMUS_RW: (filename) => _Mix_LoadWAV_RW(filename, 0), | ||
|
||
Mix_LoadMUS__deps: ['Mix_LoadMUS_RW', 'SDL_RWFromFile', 'SDL_FreeRW'], | ||
Mix_LoadMUS__proxy: 'sync', | ||
Mix_LoadMUS: (filename) => { | ||
var rwops = _SDL_RWFromFile(filename, 0); | ||
var result = _Mix_LoadMUS_RW(rwops, 0); | ||
var result = _Mix_LoadMUS_RW(rwops); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change is need in order to prevent a closure error when running
I have no idea at all why this change would trigger that error since it seems like a clear pre-existing error. Closure is such a mystery. |
||
_SDL_FreeRW(rwops); | ||
return result; | ||
}, | ||
|
Uh oh!
There was an error while loading. Please reload this page.