aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends
diff options
context:
space:
mode:
Diffstat (limited to 'alc/backends')
-rw-r--r--alc/backends/pipewire.cpp2
-rw-r--r--alc/backends/sndio.cpp2
-rw-r--r--alc/backends/winmm.cpp4
3 files changed, 4 insertions, 4 deletions
diff --git a/alc/backends/pipewire.cpp b/alc/backends/pipewire.cpp
index 2bee4d7d..aac67ba2 100644
--- a/alc/backends/pipewire.cpp
+++ b/alc/backends/pipewire.cpp
@@ -1836,7 +1836,7 @@ ClockLatency PipeWirePlayback::getClockLatency()
delay -= monoclock - nanoseconds{ptime.now};
/* Return the mixer time and delay. Clamp the delay to no less than 0,
- * incase timer drift got that severe.
+ * in case timer drift got that severe.
*/
ClockLatency ret{};
ret.ClockTime = mixtime;
diff --git a/alc/backends/sndio.cpp b/alc/backends/sndio.cpp
index 89eee941..8daa928c 100644
--- a/alc/backends/sndio.cpp
+++ b/alc/backends/sndio.cpp
@@ -436,7 +436,7 @@ void SndioCapture::open(const char *name)
if(!sio_setpar(mSndHandle, &par) || !sio_getpar(mSndHandle, &par))
throw al::backend_exception{al::backend_error::DeviceError,
- "Failed to set device praameters"};
+ "Failed to set device parameters"};
if(par.bps > 1 && par.le != SIO_LE_NATIVE)
throw al::backend_exception{al::backend_error::DeviceError,
diff --git a/alc/backends/winmm.cpp b/alc/backends/winmm.cpp
index 661585cd..c22f1c4d 100644
--- a/alc/backends/winmm.cpp
+++ b/alc/backends/winmm.cpp
@@ -167,7 +167,7 @@ WinMMPlayback::~WinMMPlayback()
/* WinMMPlayback::waveOutProc
*
- * Posts a message to 'WinMMPlayback::mixerProc' everytime a WaveOut Buffer is
+ * Posts a message to 'WinMMPlayback::mixerProc' every time a WaveOut Buffer is
* completed and returns to the application (for more data)
*/
void CALLBACK WinMMPlayback::waveOutProc(HWAVEOUT, UINT msg, DWORD_PTR, DWORD_PTR) noexcept
@@ -406,7 +406,7 @@ WinMMCapture::~WinMMCapture()
/* WinMMCapture::waveInProc
*
- * Posts a message to 'WinMMCapture::captureProc' everytime a WaveIn Buffer is
+ * Posts a message to 'WinMMCapture::captureProc' every time a WaveIn Buffer is
* completed and returns to the application (with more data).
*/
void CALLBACK WinMMCapture::waveInProc(HWAVEIN, UINT msg, DWORD_PTR, DWORD_PTR) noexcept