Browse Source

Added missing signature.

Fabio Alessandrelli 3 years ago
parent
commit
a4c3e915be
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

@@ -462,6 +462,7 @@ const GodotDisplay = {
 		GodotRuntime.setHeapValue(height, window.screen.height * scale, 'i32');
 		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) {
 	godot_js_display_window_size_get: function (p_width, p_height) {
 		GodotRuntime.setHeapValue(p_width, GodotConfig.canvas.width, 'i32');
 		GodotRuntime.setHeapValue(p_width, GodotConfig.canvas.width, 'i32');
 		GodotRuntime.setHeapValue(p_height, GodotConfig.canvas.height, 'i32');
 		GodotRuntime.setHeapValue(p_height, GodotConfig.canvas.height, 'i32');