=?UTF-8?Q?Rico=20Sch=C3=BCller=20?=: wined3d: Fix typo.

Alexandre Julliard julliard at winehq.org
Wed Jul 24 14:55:26 CDT 2013


Module: wine
Branch: master
Commit: 55c190d396df51cd0e209e0ca304df96932e1dcf
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=55c190d396df51cd0e209e0ca304df96932e1dcf

Author: Rico Schüller <kgbricola at web.de>
Date:   Tue Jul 23 14:07:08 2013 +0200

wined3d: Fix typo.

---

 dlls/wined3d/device.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c
index 07bb130..de36741 100644
--- a/dlls/wined3d/device.c
+++ b/dlls/wined3d/device.c
@@ -4252,18 +4252,18 @@ HRESULT CDECL wined3d_device_validate_device(const struct wined3d_device *device
 
         if (state->sampler_states[i][WINED3D_SAMP_MAG_FILTER] != WINED3D_TEXF_POINT)
         {
-            WARN("Non-filterable texture and mag filter enabled on samper %u, returning E_FAIL\n", i);
+            WARN("Non-filterable texture and mag filter enabled on sampler %u, returning E_FAIL\n", i);
             return E_FAIL;
         }
         if (state->sampler_states[i][WINED3D_SAMP_MIN_FILTER] != WINED3D_TEXF_POINT)
         {
-            WARN("Non-filterable texture and min filter enabled on samper %u, returning E_FAIL\n", i);
+            WARN("Non-filterable texture and min filter enabled on sampler %u, returning E_FAIL\n", i);
             return E_FAIL;
         }
         if (state->sampler_states[i][WINED3D_SAMP_MIP_FILTER] != WINED3D_TEXF_NONE
                 && state->sampler_states[i][WINED3D_SAMP_MIP_FILTER] != WINED3D_TEXF_POINT)
         {
-            WARN("Non-filterable texture and mip filter enabled on samper %u, returning E_FAIL\n", i);
+            WARN("Non-filterable texture and mip filter enabled on sampler %u, returning E_FAIL\n", i);
             return E_FAIL;
         }
     }




More information about the wine-cvs mailing list