Browse Source

Added missing signature.

(cherry picked from commit a4c3e915be0b075658021e9fa43c3a2d3c1584d7)
Fabio Alessandrelli 3 years ago
parent
commit
80d46acf5d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      platform/javascript/js/libs/library_godot_display.js

+ 1 - 0
platform/javascript/js/libs/library_godot_display.js

@@ -389,6 +389,7 @@ const GodotDisplay = {
 		GodotRuntime.setHeapValue(height, window.screen.height * scale, 'i32');
 	},
 
+	godot_js_display_window_size_get__sig: 'vii',
 	godot_js_display_window_size_get: function (p_width, p_height) {
 		GodotRuntime.setHeapValue(p_width, GodotConfig.canvas.width, 'i32');
 		GodotRuntime.setHeapValue(p_height, GodotConfig.canvas.height, 'i32');