Skip to content

Commit

Permalink
modules: remove unnecessary placeholder parameters as they are now in…
Browse files Browse the repository at this point in the history
…jected
  • Loading branch information
foxnne committed Jan 16, 2025
1 parent 8ad08a6 commit 58a099d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/editor/Sidebar.zig
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ pub fn init(sidebar: *Sidebar) !void {
sidebar.* = .{};
}

pub fn deinit(_: *Sidebar) void {
pub fn deinit() void {
// TODO: Free memory
}

pub fn draw(_: *Core, app: *Pixi) !void {
pub fn draw(app: *Pixi) !void {
imgui.pushStyleVar(imgui.StyleVar_WindowRounding, 0.0);
defer imgui.popStyleVar();
imgui.setNextWindowPos(.{
Expand Down
2 changes: 1 addition & 1 deletion src/editor/explorer/Explorer.zig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn init(explorer: *Explorer) !void {
explorer.* = .{};
}

pub fn deinit(_: *Explorer) void {
pub fn deinit() void {
// TODO: Free memory
}

Expand Down

0 comments on commit 58a099d

Please sign in to comment.