aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-04-07 13:55:22 -0700
committerChris Robinson <[email protected]>2014-04-07 13:55:22 -0700
commit1290f37750486d9f036d436ea9e397cbfd24fb13 (patch)
tree024bdeb86c95f794ae2b5c1de0290b22801ce2ad /Alc
parentadd3013234945ba5718c880a8e194bb1dbd1e79d (diff)
Silence an MSVC warning about -1u
Diffstat (limited to 'Alc')
-rw-r--r--Alc/backends/winmm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Alc/backends/winmm.c b/Alc/backends/winmm.c
index 93d2b328..acffd2f3 100644
--- a/Alc/backends/winmm.c
+++ b/Alc/backends/winmm.c
@@ -287,7 +287,7 @@ static ALCenum WinMMOpenPlayback(ALCdevice *Device, const ALCchar *deviceName)
{
WinMMData *data = NULL;
const al_string *iter, *end;
- UINT DeviceID = -1u;
+ UINT DeviceID = 0u-1u;
MMRESULT res;
if(VECTOR_SIZE(PlaybackDevices) == 0)
@@ -305,7 +305,7 @@ static ALCenum WinMMOpenPlayback(ALCdevice *Device, const ALCchar *deviceName)
break;
}
}
- if(DeviceID == -1u)
+ if(DeviceID == 0u-1u)
return ALC_INVALID_VALUE;
data = calloc(1, sizeof(*data));
@@ -507,7 +507,7 @@ static ALCenum WinMMOpenCapture(ALCdevice *Device, const ALCchar *deviceName)
ALbyte *BufferData = NULL;
DWORD CapturedDataSize;
WinMMData *data = NULL;
- UINT DeviceID = -1u;
+ UINT DeviceID = 0u-1u;
ALint BufferSize;
MMRESULT res;
ALuint i;
@@ -527,7 +527,7 @@ static ALCenum WinMMOpenCapture(ALCdevice *Device, const ALCchar *deviceName)
break;
}
}
- if(DeviceID == -1u)
+ if(DeviceID == 0u-1u)
return ALC_INVALID_VALUE;
switch(Device->FmtChans)