ezrand fix

This commit is contained in:
Luxferre
2026-01-12 11:07:33 +02:00
parent fc6a230af7
commit af08983f56
+1
View File
@@ -44,6 +44,7 @@
static u16 _ez_entropy = 0;
u16 ezrand() {
_ez_entropy = 1 + ((_ez_entropy >> 15) | (_ez_entropy << 1));
return ((u16) rand()) ^ _ez_entropy;
}