improve MGF video quality

This commit is contained in:
Ondřej Novák 2025-01-29 20:46:35 +01:00
parent 2be84e406c
commit f169aa5071
4 changed files with 86 additions and 5 deletions

View file

@ -85,6 +85,7 @@
#define get_string(t) texty[t]
static __inline unsigned int rnd(unsigned int max) {
if (max == 0) return 0;
return rand() % max;
}