mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 15:11:36 -04:00
Minor fixes
This commit is contained in:
parent
87f6e73975
commit
fb2d077ca9
@ -146,7 +146,7 @@ SoundPtr OpenAL_Sound::clone() const
|
||||
|
||||
// Constructor used for cloned sounds
|
||||
OpenAL_Sound::OpenAL_Sound(ALuint buf, int *ref)
|
||||
: refCnt(ref), bufferID(buf)
|
||||
: bufferID(buf), refCnt(ref)
|
||||
{
|
||||
// Increase the reference count
|
||||
assert(ref != NULL);
|
||||
|
@ -8,7 +8,7 @@ bool AudiereFile::seek(int pos, SeekMode mode)
|
||||
assert(inp->isSeekable);
|
||||
assert(inp->hasPosition);
|
||||
|
||||
int newPos;
|
||||
size_t newPos;
|
||||
|
||||
switch(mode)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user