diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-15 00:01:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 00:01:54 +0200 |
commit | 88e671e0b70293f30cf983e48837ebc85e2d5afc (patch) | |
tree | e78987fee0e034a0710ea37f25ac6fa8d78bdfdd /platform/javascript/js/libs/library_godot_display.js | |
parent | 16027e7cf412140c128e7c002ce0be533b94db00 (diff) | |
parent | 049b5159f13d409ce48e6dd8abccf84ae1d311b3 (diff) |
Merge pull request #49592 from Faless/js/4.x_fix_sigs
[HTML5] Fix build without eval, library functions signatures.
Diffstat (limited to 'platform/javascript/js/libs/library_godot_display.js')
-rw-r--r-- | platform/javascript/js/libs/library_godot_display.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/js/libs/library_godot_display.js b/platform/javascript/js/libs/library_godot_display.js index 91cab5eacc..affae90370 100644 --- a/platform/javascript/js/libs/library_godot_display.js +++ b/platform/javascript/js/libs/library_godot_display.js @@ -683,7 +683,7 @@ const GodotDisplay = { return GodotDisplayScreen.exitFullscreen(); }, - godot_js_display_desired_size_set__sig: 'v', + godot_js_display_desired_size_set__sig: 'vii', godot_js_display_desired_size_set: function (width, height) { GodotDisplayScreen.desired_size = [width, height]; GodotDisplayScreen.updateSize(); |