This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
modtainers
/
Svelto.ECS
mirror of
https://github.com/sebas77/Svelto.ECS
Watch
4
Star
0
Fork
0
Code
Issues
0
Releases
49
Wiki
Activity
Browse Source
improve code
tags/Rel25a
sebas77
6 years ago
parent
497f97650b
commit
a62a3c8dd2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Svelto.ECS/EGID.cs
+ 1
- 1
Svelto.ECS/EGID.cs
View File
@@ -33,7 +33,7 @@ namespace Svelto.ECS
static long MAKE_GLOBAL_ID(int entityId, int groupId)
{
return (long)groupId << 32 | (uint)entityId;
return (long)groupId << 32 | (
((long)(
uint)entityId
) & 0xFFFFFFFF)
;
}
}
}
Write
Preview
Loading…
Cancel
Save