Skip to content

Commit

Permalink
gamemode: fix linux build
Browse files Browse the repository at this point in the history
Signed-off-by: Emi Gutekanst <[email protected]>
  • Loading branch information
emidoots committed Jan 1, 2025
1 parent 41ddd22 commit 1d01c91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamemode.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test {
std.testing.refAllDeclsRecursive(@This());
}

pub const LoadError = error{MissingSymbol} || std.DynLib.Error;
pub const LoadError = error{ MissingSymbol, LibraryNotFound } || std.DynLib.Error;
pub const Error = error{ RequestFailed, RequestRejected };

pub const Status = enum(u8) {
Expand Down

0 comments on commit 1d01c91

Please sign in to comment.