fix boolean
This commit is contained in:
parent
4d11ff3bd9
commit
b642369b56
1 changed files with 2 additions and 2 deletions
|
@ -259,7 +259,7 @@ pub fn main() !void {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (random.bool()) {
|
if (random.boolean()) {
|
||||||
for (0..random.int(u5)) |_| {
|
for (0..random.int(u5)) |_| {
|
||||||
try osc_writer.writeByte(byte: {
|
try osc_writer.writeByte(byte: {
|
||||||
while (true) {
|
while (true) {
|
||||||
|
@ -270,7 +270,7 @@ pub fn main() !void {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (random.bool()) try osc_writer.writeByte(';');
|
if (random.boolean()) try osc_writer.writeByte(';');
|
||||||
try osc_writer.writeAll("\x1b\\");
|
try osc_writer.writeAll("\x1b\\");
|
||||||
|
|
||||||
const osc = osc_fbs.getWritten();
|
const osc = osc_fbs.getWritten();
|
||||||
|
|
Loading…
Reference in a new issue