mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-15 04:29:37 +00:00
Fix equality test in gpr2gpa.cpp
I don't think this actually gets hit when converting the base Glider PRO resources, but it's an obvious error that makes the condition always true.
This commit is contained in:
@@ -1471,7 +1471,7 @@ bool DecompressSound(int compressionID, int channelCount, const void *sndData, s
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (compressionID = AudioCompressionCodecID_SixToOne)
|
else if (compressionID == AudioCompressionCodecID_SixToOne)
|
||||||
{
|
{
|
||||||
if (channelCount != 1)
|
if (channelCount != 1)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user