Skip to content

Commit 2d08834

Browse files
committed
Cleaning up clear example
1 parent 2051e57 commit 2d08834

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Diff for: src/examples/clear.zig

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ var gpa = std.heap.GeneralPurposeAllocator(.{}){};
99
var time: f32 = 0.0;
1010

1111
pub fn main() !void {
12-
std.debug.print("starting clear example\n", .{});
13-
1412
const clear_module = delve.modules.Module{
1513
.name = "clear_example",
1614
.init_fn = on_init,
@@ -33,8 +31,7 @@ pub fn main() !void {
3331
}
3432

3533
pub fn on_init() !void {
36-
std.debug.print("clear module on_init()\n", .{});
37-
34+
delve.debug.log("Clear Example Initializing", .{});
3835
delve.platform.graphics.setClearColor(delve.colors.examples_bg_light);
3936
}
4037

0 commit comments

Comments
 (0)