diff options
Diffstat (limited to 'src/post/goom/goom_tools.h')
-rw-r--r-- | src/post/goom/goom_tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post/goom/goom_tools.h b/src/post/goom/goom_tools.h index 8e4fdd314..cb2148e31 100644 --- a/src/post/goom/goom_tools.h +++ b/src/post/goom/goom_tools.h @@ -14,7 +14,7 @@ static unsigned short rand_pos; while (rand_pos != 0) rand_tab [rand_pos++] = rand () ; -static inline int RAND() { +static inline int RAND(void) { ++rand_pos; return rand_tab[rand_pos]; } |