Module: wine
Branch: master
Commit: 5d7fcf52106bbb11544e8dbc5777150c8f55d726
URL: https://source.winehq.org/git/wine.git/?a=commit;h=5d7fcf52106bbb11544e8dbc…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Wed Dec 11 02:57:45 2019 +0100
d3dx9_36: Fix the spelling of a comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/d3dx9_36/txc_compress_dxtn.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/d3dx9_36/txc_compress_dxtn.c b/dlls/d3dx9_36/txc_compress_dxtn.c
index 86fd8e0aff..7f10de8076 100644
--- a/dlls/d3dx9_36/txc_compress_dxtn.c
+++ b/dlls/d3dx9_36/txc_compress_dxtn.c
@@ -450,7 +450,7 @@ static void encodedxt5alpha(GLubyte *blkaddr, GLubyte srccolors[4][4][4],
if ((alphabase[0] > alphabase[1]) && !(alphaabsmin && alphaabsmax)) { /* one color, either max or min */
/* shortcut here since it is a very common case (and also avoids later problems) */
/* || (alphabase[0] == alphabase[1] && !alphaabsmin && !alphaabsmax) */
- /* could also thest for alpha0 == alpha1 (and not min/max), but probably not common, so don't bother */
+ /* could also test for alpha0 == alpha1 (and not min/max), but probably not common, so don't bother */
*blkaddr++ = srccolors[0][0][3];
blkaddr++;
Module: wine
Branch: master
Commit: 975bc319d59d97bc189a7bbfd0eff2debd970957
URL: https://source.winehq.org/git/wine.git/?a=commit;h=975bc319d59d97bc189a7bbf…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Wed Dec 11 02:57:32 2019 +0100
vbscript/tests: Fix the spelling of a vbscript comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/vbscript/tests/lang.vbs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/vbscript/tests/lang.vbs b/dlls/vbscript/tests/lang.vbs
index 6eebe287fe..fb9f96e427 100644
--- a/dlls/vbscript/tests/lang.vbs
+++ b/dlls/vbscript/tests/lang.vbs
@@ -1573,7 +1573,7 @@ sub test_dotIdentifiers
end sub
call test_dotIdentifiers
-' Test End statements not required to be preceeded by a newline or separator
+' Test End statements not required to be preceded by a newline or separator
Sub EndTestSub
x = 1 End Sub
Module: wine
Branch: master
Commit: f7de43a173abd3e4af2c6aa09c24ed461b1bf69a
URL: https://source.winehq.org/git/wine.git/?a=commit;h=f7de43a173abd3e4af2c6aa0…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Wed Dec 11 02:57:24 2019 +0100
winemac.drv: Fix the spelling of a couple of comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Ken Thomases <ken(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winemac.drv/display.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winemac.drv/display.c b/dlls/winemac.drv/display.c
index bafdb42589..b58a9d172b 100644
--- a/dlls/winemac.drv/display.c
+++ b/dlls/winemac.drv/display.c
@@ -1468,12 +1468,12 @@ static BOOL macdrv_init_adapter(HKEY video_hkey, int video_index, int gpu_index,
RegCreateKeyExW(HKEY_CURRENT_CONFIG, adapter_keyW, 0, NULL, REG_OPTION_VOLATILE, KEY_WRITE, NULL, &hkey, NULL);
/* Write GPU instance path so that we can find the GPU instance via adapters quickly. Another way is trying to match
- * them via the GUID in Device Paramters/VideoID, but it would required enumrating all GPU instances */
+ * them via the GUID in Device Parameters/VideoID, but it would require enumerating all GPU instances */
sprintfW(bufferW, gpu_instance_fmtW, gpu->vendor_id, gpu->device_id, gpu->subsys_id, gpu->revision_id, gpu_index);
if (RegSetValueExW(hkey, gpu_idW, 0, REG_SZ, (const BYTE *)bufferW, (lstrlenW(bufferW) + 1) * sizeof(WCHAR)))
goto done;
- /* Write all monitor instances paths under this adapter */
+ /* Write all monitor instance paths under this adapter */
for (i = 0; i < monitor_count; i++)
{
sprintfW(key_nameW, mointor_id_fmtW, i);