diff options
Diffstat (limited to 'platform/web/js')
| -rw-r--r-- | platform/web/js/libs/library_godot_javascript_singleton.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/platform/web/js/libs/library_godot_javascript_singleton.js b/platform/web/js/libs/library_godot_javascript_singleton.js index 692f27676a..c86cbbae45 100644 --- a/platform/web/js/libs/library_godot_javascript_singleton.js +++ b/platform/web/js/libs/library_godot_javascript_singleton.js @@ -88,7 +88,7 @@ const GodotJSWrapper = {  				return GodotRuntime.getHeapValue(val, 'double');  			case 4:  				return GodotRuntime.parseString(GodotRuntime.getHeapValue(val, '*')); -			case 21: // OBJECT +			case 24: // OBJECT  				return GodotJSWrapper.get_proxied_value(GodotRuntime.getHeapValue(val, 'i64'));  			default:  				return undefined; @@ -117,7 +117,7 @@ const GodotJSWrapper = {  			}  			const id = GodotJSWrapper.get_proxied(p_val);  			GodotRuntime.setHeapValue(p_exchange, id, 'i64'); -			return 21; +			return 24; // OBJECT  		},  	}, |