We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2051e57 commit 2d08834Copy full SHA for 2d08834
src/examples/clear.zig
@@ -9,8 +9,6 @@ var gpa = std.heap.GeneralPurposeAllocator(.{}){};
9
var time: f32 = 0.0;
10
11
pub fn main() !void {
12
- std.debug.print("starting clear example\n", .{});
13
-
14
const clear_module = delve.modules.Module{
15
.name = "clear_example",
16
.init_fn = on_init,
@@ -33,8 +31,7 @@ pub fn main() !void {
33
31
}
34
32
35
pub fn on_init() !void {
36
- std.debug.print("clear module on_init()\n", .{});
37
+ delve.debug.log("Clear Example Initializing", .{});
38
delve.platform.graphics.setClearColor(delve.colors.examples_bg_light);
39
40
0 commit comments