Skip to content

Commit d8343ea

Browse files
committed
Update emsdk to 3.1.63
1 parent 28013e9 commit d8343ea

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

1k/manifest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if ($Global:is_axmol_app -or $Global:is_axmol_engine) {
1212
$manifest['nuget'] = '5.5.1' # since 5.6.0, require .net 4.0
1313
$manifest['glslcc'] = '1.9.5+'
1414
$manifest['cmake'] = '3.29.3+'
15-
$manifest['emsdk'] = '3.1.61+'
15+
$manifest['emsdk'] = '3.1.63+'
1616
$manifest['jdk'] = '17.0.10+'
1717
}
1818

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
- gradle: 8.7 ==> 8.8
6666
- AGP: 8.2.2 ==> 8.4.0
67-
- emsdk: 3.1.59 ==> 3.1.61
67+
- emsdk: 3.1.59 ==> 3.1.63
6868

6969
### 3rdparty Updates
7070

core/platform/GLViewImpl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ class GLFWEventHandler
115115
_view->onGLFWMouseMoveCallBack(window, x, y);
116116
}
117117
#if defined(__EMSCRIPTEN__)
118-
static int onWebTouchCallback(int eventType, const EmscriptenTouchEvent* touchEvent, void* /*userData*/)
118+
static EM_BOOL onWebTouchCallback(int eventType, const EmscriptenTouchEvent* touchEvent, void* /*userData*/)
119119
{
120120
if (_view)
121121
_view->onWebTouchCallback(eventType, touchEvent);
122-
return 0;
122+
return EM_FALSE;
123123
}
124124
#endif
125125

0 commit comments

Comments
 (0)