Commit d0629d4e authored by Michael Droettboom's avatar Michael Droettboom

Use bitwise and rather than mod, for performance

parent 2e23079a
...@@ -7,11 +7,11 @@ EM_JS(void, hiwire_setup, (), { ...@@ -7,11 +7,11 @@ EM_JS(void, hiwire_setup, (), {
{ {
var objects = hiwire.objects; var objects = hiwire.objects;
while (hiwire.counter in objects) { while (hiwire.counter in objects) {
hiwire.counter = (hiwire.counter + 1) % 0x8fffffff; hiwire.counter = (hiwire.counter + 1) & 0x8fffffff;
} }
var idval = hiwire.counter; var idval = hiwire.counter;
objects[idval] = jsval; objects[idval] = jsval;
hiwire.counter = (hiwire.counter + 1) % 0x8fffffff; hiwire.counter = (hiwire.counter + 1) & 0x8fffffff;
return idval; return idval;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment