Assorted spelling fixes.
This commit is contained in:
parent
4017334ed4
commit
5a8fc34033
|
@ -827,7 +827,7 @@ IDirect3DVertexDeclaration9 *getConvertedDecl(IDirect3DDevice9Impl *This, DWORD
|
|||
convertedDecls[low] = pDecl;
|
||||
This->numConvertedDecls++;
|
||||
|
||||
/* Will prevent the decl from beeing destroyed */
|
||||
/* Will prevent the decl from being destroyed */
|
||||
((IDirect3DVertexDeclaration9Impl *) pDecl)->convFVF = fvf;
|
||||
IDirect3DVertexDeclaration9_Release(pDecl); /* Does not destroy now */
|
||||
|
||||
|
|
|
@ -3076,7 +3076,7 @@ const IDirectDraw7Vtbl IDirectDraw7_Vtbl =
|
|||
*
|
||||
* This function is in ddraw.c and the DDraw object space because D3D7
|
||||
* vertex buffers are created using the IDirect3D interface to the ddraw
|
||||
* object, so they can be valid accross D3D devices(theoretically. The ddraw
|
||||
* object, so they can be valid across D3D devices(theoretically. The ddraw
|
||||
* object also owns the wined3d device
|
||||
*
|
||||
* Parameters:
|
||||
|
|
|
@ -67,7 +67,7 @@ static CRITICAL_SECTION resolver_cs = { &resolver_cs_debug, -1, 0, 0, 0, 0 };
|
|||
|
||||
static int resolver_initialised;
|
||||
|
||||
/* call res_init() just once because of a bug in Mac OSX 10.4 */
|
||||
/* call res_init() just once because of a bug in Mac OS X 10.4 */
|
||||
static void initialise_resolver( void )
|
||||
{
|
||||
if (!resolver_initialised)
|
||||
|
|
|
@ -52,7 +52,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
|
|||
|
||||
static int resolver_initialised;
|
||||
|
||||
/* call res_init() just once because of a bug in Mac OSX 10.4 */
|
||||
/* call res_init() just once because of a bug in Mac OS X 10.4 */
|
||||
static void initialise_resolver(void)
|
||||
{
|
||||
if (!resolver_initialised)
|
||||
|
|
|
@ -120,7 +120,7 @@ static void test_SQLInstallDriverManager(void)
|
|||
sql_ret = SQLInstallerErrorW(1, &error_code, NULL, 0, NULL);
|
||||
ok(bool_ret, "SQLInstallDriverManager unexpectedly failed\n");
|
||||
ok(sql_ret == SQL_NO_DATA, "Expected SQL_NO_DATA, got %d\n", sql_ret);
|
||||
/* path_out should in practice be less then 0xcafe */
|
||||
/* path_out should in practice be less than 0xcafe */
|
||||
ok(path_out != 0xcafe, "Expected path_out to show the correct amount of bytes\n");
|
||||
}
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(mixer);
|
|||
* Mute is optional
|
||||
*
|
||||
* For capture controls, it is needed that there is a capture switch and a volume switch,
|
||||
* It doesn't matter wether it is a playback volume switch or a capture volume switch.
|
||||
* It doesn't matter whether it is a playback volume switch or a capture volume switch.
|
||||
* The code will first try to get/adjust capture volume, if that fails it tries playback volume
|
||||
* It is not pretty, but under my 3 test cards it seems that there is no other choice:
|
||||
* Most capture controls don't have a capture volume setting
|
||||
|
@ -305,7 +305,7 @@ static void fillcontrols(mixer *mmixer)
|
|||
}
|
||||
|
||||
/* get amount of channels for elem */
|
||||
/* Officially we should keep capture/playback seperated,
|
||||
/* Officially we should keep capture/playback separated,
|
||||
* but that's not going to work in the alsa api */
|
||||
static int chans(mixer *mmixer, snd_mixer_elem_t * elem, DWORD capt)
|
||||
{
|
||||
|
@ -371,7 +371,7 @@ static void ALSA_MixerInit(void)
|
|||
err = snd_mixer_open(&mixdev[mixnum].mix,0);
|
||||
if (err < 0)
|
||||
{
|
||||
WARN("Error occured opening mixer: %s\n", snd_strerror(err));
|
||||
WARN("Error occurred opening mixer: %s\n", snd_strerror(err));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -504,7 +504,7 @@ static void ALSA_MixerInit(void)
|
|||
continue;
|
||||
|
||||
eclose:
|
||||
WARN("Error occured initialising mixer: %s\n", snd_strerror(err));
|
||||
WARN("Error occurred initialising mixer: %s\n", snd_strerror(err));
|
||||
HeapFree(GetProcessHeap(), 0, mixdev[mixnum].lines);
|
||||
HeapFree(GetProcessHeap(), 0, mixdev[mixnum].controls);
|
||||
snd_mixer_close(mixdev[mixnum].mix);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Wine Midi driver for MacOSX
|
||||
* Wine Midi driver for Mac OS X
|
||||
*
|
||||
* Copyright 2006 Emmanuel Maillard
|
||||
*
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Wine Midi driver for MacOSX
|
||||
* Wine Midi driver for Mac OS X
|
||||
*
|
||||
* Copyright 2006 Emmanuel Maillard
|
||||
*
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Sample MIDI Wine Driver for MacOSX (based on OSS midi driver)
|
||||
* Sample MIDI Wine Driver for Mac OS X (based on OSS midi driver)
|
||||
*
|
||||
* Copyright 1994 Martin Ayotte
|
||||
* Copyright 1998 Luiz Otavio L. Zorzella (init procedures)
|
||||
|
|
|
@ -414,7 +414,7 @@ BOOL WCMD_delete (char *command, BOOL expectDir) {
|
|||
FindClose (hff);
|
||||
}
|
||||
|
||||
/* Now recurse into all subdirectories handling the paramater in the same way */
|
||||
/* Now recurse into all subdirectories handling the parameter in the same way */
|
||||
if (strstr (quals, "/S") != NULL) {
|
||||
|
||||
char thisDir[MAX_PATH];
|
||||
|
|
Loading…
Reference in New Issue