Module: wine
Branch: master
Commit: 65569206b2262f4c897943c19d0b5f11cfa21e2f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=65569206b2262f4c897943c19…
Author: Austin English <austinenglish(a)gmail.com>
Date: Wed Jan 9 11:59:19 2008 -0600
Spelling fixes.
---
dlls/winedos/dma.c | 2 +-
dlls/winedos/dosmem.c | 4 ++--
dlls/winedos/int10.c | 6 +++---
dlls/winedos/soundblaster.c | 2 +-
dlls/winedos/vxd.c | 6 +++---
dlls/wineesd.drv/audio.c | 4 ++--
dlls/winejoystick.drv/joystick.c | 4 ++--
7 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/dlls/winedos/dma.c b/dlls/winedos/dma.c
index d087892..c356ac9 100644
--- a/dlls/winedos/dma.c
+++ b/dlls/winedos/dma.c
@@ -29,7 +29,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(dma);
-/* Internal registers of the 2 DMA chips wich control 8 DMA channels */
+/* Internal registers of the 2 DMA chips which control 8 DMA channels */
static DWORD DMA_BaseAddress[8];
static WORD DMA_ByteCount[8];
static DWORD DMA_CurrentBaseAddress[8];
diff --git a/dlls/winedos/dosmem.c b/dlls/winedos/dosmem.c
index 2c3c2ca..3f635c7 100644
--- a/dlls/winedos/dosmem.c
+++ b/dlls/winedos/dosmem.c
@@ -234,7 +234,7 @@ void BiosTick( WORD timer )
* DOSMEM_Collapse
*
* Helper function for internal use only.
- * Atach all following free blocks to this one, even if this one is not free.
+ * Attach all following free blocks to this one, even if this one is not free.
*/
static void DOSMEM_Collapse( MCB* mcb )
{
@@ -285,7 +285,7 @@ LPVOID DOSMEM_AllocBlock(UINT size, UINT16* pseg)
if (curr->psp == MCB_PSP_FREE)
{
DOSMEM_Collapse( curr );
- /* is it large enough (one paragaph for the MCB)? */
+ /* is it large enough (one paragraph for the MCB)? */
if (curr->size >= size)
{
if (curr->size > size)
diff --git a/dlls/winedos/int10.c b/dlls/winedos/int10.c
index f0de570..a056cb6 100644
--- a/dlls/winedos/int10.c
+++ b/dlls/winedos/int10.c
@@ -927,7 +927,7 @@ static void INT10_HandleVESA( CONTEXT86 *context )
case 0x05: /* VESA SuperVGA BIOS - CPU VIDEO MEMORY CONTROL */
/*
* This subfunction supports only Window A (BL_reg == 0) and
- * is assumes that window granularity is 64k.
+ * it assumes that window granularity is 64k.
*/
switch(BH_reg(context)) {
case 0x00: /* select video memory window */
@@ -1386,7 +1386,7 @@ void WINAPI DOSVM_Int10Handler( CONTEXT86 *context )
case 0x20: /* ALTERNATE PRTSC */
FIXME("Install Alternate Print Screen - Not Supported\n");
break;
- case 0x30: /* SELECT VERTICAL RESOULTION */
+ case 0x30: /* SELECT VERTICAL RESOLUTION */
FIXME("Select vertical resolution - not supported\n");
break;
case 0x31: /* ENABLE/DISABLE DEFAULT PALETTE LOADING */
@@ -1395,7 +1395,7 @@ void WINAPI DOSVM_Int10Handler( CONTEXT86 *context )
(data->VGASettings & 0xf7) |
((AL_reg(context) == 1) << 3);
break;
- case 0x32: /* ENABLE/DISABLE VIDEO ADDRERSSING */
+ case 0x32: /* ENABLE/DISABLE VIDEO ADDRESSING */
FIXME("Video Addressing - Not Supported\n");
break;
case 0x33: /* ENABLE/DISABLE GRAY SCALE SUMMING */
diff --git a/dlls/winedos/soundblaster.c b/dlls/winedos/soundblaster.c
index 07fc72f..e48095f 100644
--- a/dlls/winedos/soundblaster.c
+++ b/dlls/winedos/soundblaster.c
@@ -220,7 +220,7 @@ static void SB_Reset(void)
/* All right, let's put the magic value for autodetection */
DSP_OutBuffer[0] = 0xaa;
else
- /* Something is wrong, put 0 to failed audetection */
+ /* Something is wrong, put 0 to failed autodetection */
DSP_OutBuffer[0] = 0x00;
}
diff --git a/dlls/winedos/vxd.c b/dlls/winedos/vxd.c
index 18ca0d4..4a1eabf 100644
--- a/dlls/winedos/vxd.c
+++ b/dlls/winedos/vxd.c
@@ -264,7 +264,7 @@ void WINAPI VXD_Shell( CONTEXT86 *context )
case 0x0002:
case 0x0003:
/* SHELL_SYSMODAL_Message
- ebx virtual maschine handle
+ ebx virtual machine handle
eax message box flags
ecx address of message
edi address of caption
@@ -272,7 +272,7 @@ void WINAPI VXD_Shell( CONTEXT86 *context )
*/
case 0x0004:
/* SHELL_Message
- ebx virtual maschine handle
+ ebx virtual machine handle
eax message box flags
ecx address of message
edi address of caption
@@ -543,7 +543,7 @@ void WINAPI VXD_APM ( CONTEXT86 *context )
* This means especially that the flat code/data selectors get actually
* allocated with base 0x0, so that flat offsets and (real) linear addresses
* do again agree! In fact, every call e.g. of a Win32s VxD service now
- * has all pointer arguments (which are offsets in the flat data segement)
+ * has all pointer arguments (which are offsets in the flat data segment)
* first reduced by 0x10000 by the W32SKRNL glue code, and then again
* increased by 0x10000 by *our* code.
*
diff --git a/dlls/wineesd.drv/audio.c b/dlls/wineesd.drv/audio.c
index 8836672..97b9fa6 100644
--- a/dlls/wineesd.drv/audio.c
+++ b/dlls/wineesd.drv/audio.c
@@ -23,7 +23,7 @@
*/
/* NOTE:
* with esd we cannot stop the audio that is already in
- * the servers buffer.
+ * the server's buffer.
*
* FIXME:
* pause in waveOut does not work correctly in loop mode
@@ -462,7 +462,7 @@ LONG ESD_WaveInit(void)
WOutDev[i].esd_fd = -1;
memset(&WOutDev[i].caps, 0, sizeof(WOutDev[i].caps)); /* zero out
caps values */
- WOutDev[i].caps.wMid = 0x00FF; /* Manufac ID */
+ WOutDev[i].caps.wMid = 0x00FF; /* Manufacturer ID */
WOutDev[i].caps.wPid = 0x0001; /* Product ID */
lstrcpyW(WOutDev[i].caps.szPname, ini);
snprintf(WOutDev[i].interface_name, sizeof(WOutDev[i].interface_name), "wineesd: %d", i);
diff --git a/dlls/winejoystick.drv/joystick.c b/dlls/winejoystick.drv/joystick.c
index 02db839..f8d0511 100644
--- a/dlls/winejoystick.drv/joystick.c
+++ b/dlls/winejoystick.drv/joystick.c
@@ -24,7 +24,7 @@
* - nearly all joystick functions can be regarded as obsolete,
* as Linux (2.1.x) now supports extended joysticks with a completely
* new joystick driver interface
- * New driver's docu says:
+ * New driver's documentation says:
* "For backward compatibility the old interface is still included,
* but will be dropped in the future."
* Thus we should implement the new interface and at most keep the old
@@ -83,7 +83,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(joystick);
typedef struct tagWINE_JSTCK {
int joyIntf;
int in_use;
- /* Some extra info we need to make this acutaly work under the
+ /* Some extra info we need to make this actually work under the
Linux 2.2 event api.
First of all, we cannot keep closing and reopening the device file -
that blows away the state of the stick device, and we lose events. So, we