From 631c1226691505624c08995b6a2ac81e46a9b17e Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Sun, 5 Sep 2021 21:30:31 -0400 Subject: In response to issue #9629, correct usingnamespace usage --- src/sfml/audio/Sound.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sfml/audio/Sound.zig') diff --git a/src/sfml/audio/Sound.zig b/src/sfml/audio/Sound.zig index 4430dcb..073aa5f 100644 --- a/src/sfml/audio/Sound.zig +++ b/src/sfml/audio/Sound.zig @@ -1,8 +1,8 @@ -//! Regular sound that can be played in the audio environment. +//! Regular sound that can be played in the audio environment. const sf = struct { pub usingnamespace @import("../sfml.zig"); - pub usingnamespace audio; + pub usingnamespace sf.audio; }; const Sound = @This(); -- cgit v1.3.1