aboutsummaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index e9c790c..4eb7066 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -2,6 +2,7 @@
#define _PLUGIN_H_
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include "gfx.h"
@@ -41,7 +42,7 @@ struct plugin_api {
void (*lcd_set_background)(unsigned foreground);
unsigned (*lcd_get_background)(void);
- void (*srand)(unsigned int seed);
+ void (*srand)(uint64_t seed);
unsigned int (*rand)(void);
void (*lcd_filltriangle)(int, int, int, int, int, int);