Assorted spelling fixes.
This commit is contained in:
parent
1f0fb354f5
commit
a116879507
|
@ -1566,7 +1566,7 @@ static void release_buffer_test(IDirect3DDevice9 *device)
|
|||
};
|
||||
short indices[] = {3, 4, 5};
|
||||
|
||||
/* Index and vertex buffers should always be createable */
|
||||
/* Index and vertex buffers should always be creatable */
|
||||
hr = IDirect3DDevice9_CreateVertexBuffer(device, sizeof(quad), 0, D3DFVF_XYZ | D3DFVF_DIFFUSE,
|
||||
D3DPOOL_MANAGED, &vb, NULL);
|
||||
ok(hr == D3D_OK, "CreateVertexBuffer failed with %s\n", DXGetErrorString9(hr));
|
||||
|
|
|
@ -456,9 +456,9 @@ HRESULT DSOUND_PrimarySetFormat(DirectSoundDevice *device, LPCWAVEFORMATEX wfex,
|
|||
}
|
||||
if (err == S_FALSE)
|
||||
{
|
||||
/* ALSA specific: S_FALSE tells that recreation was succesful,
|
||||
/* ALSA specific: S_FALSE tells that recreation was successful,
|
||||
* but size and location may be changed, and buffer has to be restarted
|
||||
* I put it here, so if frequency doesn't match error will be changed to DSERR_BUFFERLOST
|
||||
* I put it here, so if frequency doesn't match the error will be changed to DSERR_BUFFERLOST
|
||||
* and the entire re-initialization will occur anyway
|
||||
*/
|
||||
IDsDriverBuffer_Lock(device->hwbuf, (LPVOID *)&device->buffer, &device->buflen, NULL, NULL, 0, 0, DSBLOCK_ENTIREBUFFER);
|
||||
|
|
|
@ -1062,7 +1062,7 @@ int CDECL _ismbslead(const unsigned char* start, const unsigned char* str)
|
|||
if(!g_mbcp_is_multibyte)
|
||||
return 0;
|
||||
|
||||
/* Lead bytes can also be trail bytes so we need to analise the string
|
||||
/* Lead bytes can also be trail bytes so we need to analyse the string
|
||||
*/
|
||||
while (start <= str)
|
||||
{
|
||||
|
|
|
@ -321,7 +321,7 @@ static const struct
|
|||
{ "a=%big%%big%%big%%big%%big%%big%%big%%big%%big%%big%%big%\n" STR_SECTION, "a", { A4097 /*MAX_INF_STRING_LENGTH+1*/ } },
|
||||
|
||||
/* Prove expansion of system entries removes extra \'s and string
|
||||
replacements doesnt */
|
||||
replacements doesn't */
|
||||
{ "ab=\"%24%\"\n" STR_SECTION, "ab", { "C:\\" } },
|
||||
{ "ab=\"%mydrive%\"\n" STR_SECTION, "ab", { "C:\\" } },
|
||||
{ "ab=\"%24%\\fred\"\n" STR_SECTION, "ab", { "C:\\fred" } },
|
||||
|
|
|
@ -2498,7 +2498,7 @@ BOOL InitAdapters(void) {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/* Dynamicly load all GL core functions */
|
||||
/* Dynamically load all GL core functions */
|
||||
GL_FUNCS_GEN;
|
||||
#undef USE_GL_FUNC
|
||||
|
||||
|
|
|
@ -1632,7 +1632,7 @@ HRESULT d3dfmt_get_conv(IWineD3DSurfaceImpl *This, BOOL need_alpha_ck, BOOL use_
|
|||
break;
|
||||
|
||||
case WINED3DFMT_R16F:
|
||||
/* Simmilar to R32F */
|
||||
/* Similar to R32F */
|
||||
*convert = CONVERT_R16F;
|
||||
*format = GL_RGB;
|
||||
*internal = GL_RGB16F_ARB;
|
||||
|
|
|
@ -6447,7 +6447,7 @@ BOOL WINAPI AddPrinterDriverExW( LPWSTR pName, DWORD level, LPBYTE pDriverInfo,
|
|||
ptr = get_servername_from_name(pName);
|
||||
HeapFree(GetProcessHeap(), 0, ptr);
|
||||
if (ptr) {
|
||||
FIXME("not suported for server: %s\n", debugstr_w(pName));
|
||||
FIXME("not supported for server: %s\n", debugstr_w(pName));
|
||||
SetLastError(ERROR_ACCESS_DENIED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue