Skip to content

Commit 070b1e0

Browse files
authored
Fix issue with C inline in plasma.c
1 parent 852014f commit 070b1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/c64/plasma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void start_sid_random_generator(void) {
6363
}
6464

6565
/* Pseudo random number generator using SID noise */
66-
inline uint8_t rand8(void) { return SID.noise; }
66+
uint8_t rand8(void) { return SID.noise; }
6767

6868
/* Generate charset with 8 * 256 characters */
6969
void make_charset(void) {

0 commit comments

Comments
 (0)