diff --git a/SourceX/miniwin/dsound.cpp b/SourceX/miniwin/dsound.cpp index f3443486f..eaf8739d8 100644 --- a/SourceX/miniwin/dsound.cpp +++ b/SourceX/miniwin/dsound.cpp @@ -69,7 +69,7 @@ HRESULT DirectSoundBuffer::Play(DWORD dwReserved1, DWORD dwPriority, DWORD dwFla { int channel = Mix_PlayChannel(-1, chunk, 0); if (channel == -1) { - SDL_Log("To few channels, skipping sound\n"); + SDL_Log("Too few channels, skipping sound\n"); return DVL_DS_OK; } diff --git a/SourceX/miniwin/misc_msg.cpp b/SourceX/miniwin/misc_msg.cpp index f39f53acd..669c58a26 100644 --- a/SourceX/miniwin/misc_msg.cpp +++ b/SourceX/miniwin/misc_msg.cpp @@ -98,7 +98,7 @@ static WPARAM keystate_for_mouse(WPARAM ret) static WINBOOL false_avail() { - DUMMY_PRINT("return false although event avaliable", 1); + DUMMY_PRINT("return false although event available", 1); return false; }