summary refs log tree commit diff
path: root/src/zeal.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/zeal.zig')
-rw-r--r--src/zeal.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zeal.zig b/src/zeal.zig
index cf88b11..2f4db85 100644
--- a/src/zeal.zig
+++ b/src/zeal.zig
@@ -1,5 +1,5 @@
 // Zig easy audio library
-// Copyright (C) 2021-2023  Nguyễn Gia Phong
+// Copyright (C) 2021-2023, 2025  Nguyễn Gia Phong
 //
 // This file is part of zeal.
 //
@@ -86,7 +86,7 @@ pub const Context = struct {
     };
 
     pub fn init(device: Device, attributes: Attributes) alc.Error!Context {
-        const fields = @typeInfo(Attributes).Struct.fields;
+        const fields = @typeInfo(Attributes).@"struct".fields;
         var attr_list = [_]i32{ 0 } ** (fields.len * 2 + 1);
         var i: u8 = 0;
         inline for (fields) |f| if (@field(attributes, f.name)) |v| {