mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Use int instead of int32_t for Vectors
This commit is contained in:
parent
1f9e16119f
commit
6debabe57e
2 changed files with 5 additions and 5 deletions
|
@ -1177,16 +1177,16 @@ Error VariantParser::parse_value(Token& token,Variant &value,Stream *p_stream,in
|
|||
|
||||
} else if (id=="IntArray") {
|
||||
|
||||
Vector<int32_t> args;
|
||||
Error err = _parse_construct<int32_t>(p_stream,args,line,r_err_str);
|
||||
Vector<int> args;
|
||||
Error err = _parse_construct<int>(p_stream,args,line,r_err_str);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
DVector<int32_t> arr;
|
||||
DVector<int> arr;
|
||||
{
|
||||
int len=args.size();
|
||||
arr.resize(len);
|
||||
DVector<int32_t>::Write w = arr.write();
|
||||
DVector<int>::Write w = arr.write();
|
||||
for(int i=0;i<len;i++) {
|
||||
w[i]=int(args[i]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue