sokol_args: Fix Emscripten extra semi-colon
In Emscripten, the `EM_JS` function should not end with a `;`. This change fixes that for both instances.
This is the error that you get when using the `;`...
```
sokol_args.h:688:63: error: extra ';' outside of a function [-Werror,-Wextra-semi]
688 | EM_JS_DEPS(sokol_audio, "$withStackSave,$stringToUTF8OnStack");
| ^
sokol_args.h:732:3: error: extra ';' outside of a function [-Werror,-Wextra-semi]
732 | });
| ^
2 errors generated.
```