diff options
Diffstat (limited to 'test/scanTest1.c')
-rw-r--r-- | test/scanTest1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scanTest1.c b/test/scanTest1.c index e14a620..06057f2 100644 --- a/test/scanTest1.c +++ b/test/scanTest1.c @@ -10,6 +10,6 @@ typedef struct Color { Color lineScanner(uint16_t x, uint16_t y, uint32_t frameNumber) { - return (Color){.r = 0, .g = 0, .b = 255, .a = 255}; + return (Color){.r = random() % 255, .g = random() % 255, .b = random() % 255, .a = 255}; } |