diff options
author | Chris Robinson <[email protected]> | 2018-12-22 09:20:50 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-22 09:20:50 -0800 |
commit | 87724db6e3f60ec9866b01a50e4e1e163efda28f (patch) | |
tree | c0dde16f8e0ccf25daa1147c6718a817cc7a1073 /OpenAL32 | |
parent | 985d03d13dd675135250b91ee6a78b17489da1f8 (diff) |
Rename a couple HRTF structs
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index daafaad1..bc1dc222 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -236,8 +236,8 @@ static const union { #endif -struct Hrtf; struct HrtfEntry; +struct HrtfHandle; struct DirectHrtfState; struct FrontStablizer; struct Compressor; @@ -600,7 +600,7 @@ struct FilterSubList { typedef struct EnumeratedHrtf { std::string name; - struct HrtfEntry *hrtf; + HrtfHandle *hrtf; } EnumeratedHrtf; @@ -760,7 +760,7 @@ struct ALCdevice_struct { /* HRTF state and info */ std::unique_ptr<DirectHrtfState> mHrtfState; - Hrtf *HrtfHandle{nullptr}; + HrtfEntry *mHrtf{nullptr}; /* UHJ encoder state */ std::unique_ptr<Uhj2Encoder> Uhj_Encoder; |