mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-23 14:54:00 +00:00
Compiler warning fix
This commit is contained in:
parent
f3fa05ba2f
commit
f95ea1677c
1 changed files with 1 additions and 1 deletions
|
@ -9,8 +9,8 @@ namespace Sound {
|
||||||
/// A class for reading raw samples directly from a stream.
|
/// A class for reading raw samples directly from a stream.
|
||||||
class Stream2Samples : public SampleSource
|
class Stream2Samples : public SampleSource
|
||||||
{
|
{
|
||||||
int32_t rate, channels, bits;
|
|
||||||
Mangle::Stream::StreamPtr inp;
|
Mangle::Stream::StreamPtr inp;
|
||||||
|
int32_t rate, channels, bits;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Stream2Samples(Mangle::Stream::StreamPtr _inp, int32_t _rate, int32_t _channels, int32_t _bits)
|
Stream2Samples(Mangle::Stream::StreamPtr _inp, int32_t _rate, int32_t _channels, int32_t _bits)
|
||||||
|
|
Loading…
Reference in a new issue