diff options
| author | tslil clingman <> | 2021-09-05 21:30:31 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-09-05 21:31:59 -0400 |
| commit | 631c1226691505624c08995b6a2ac81e46a9b17e (patch) | |
| tree | 88fce088399ba4f4880298729cf98592d631ac70 /src/sfml/audio | |
| parent | a35ac9be26a148a87283ba51ed92d8c2b95bcd24 (diff) | |
In response to issue #9629, correct usingnamespace usage
Diffstat (limited to 'src/sfml/audio')
| -rw-r--r-- | src/sfml/audio/Sound.zig | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |
