1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-09-08 17:54:40 +00:00

Fixed test

This commit is contained in:
jespergravgaard 2018-09-01 00:03:45 +02:00
parent e335a956e7
commit 9816e4cba1

View File

@ -5,7 +5,7 @@ void main() {
print2(screen+80, hello); print2(screen+80, hello);
} }
inline void print2(byte* at, byte* msg) { void print2(byte* at, byte* msg) {
byte j=0; byte j=0;
for(byte i=0; msg[i]!='@'; i++) { for(byte i=0; msg[i]!='@'; i++) {
at[j] = msg[i]; at[j] = msg[i];