[PATCH 3/5] wined3d: Only warn about unsupported input streams in fixed_get_input().

Henri Verbeet hverbeet at codeweavers.com
Wed May 24 04:22:10 CDT 2017


Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
---
 dlls/wined3d/context.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c
index 6d09c22..cfeae83 100644
--- a/dlls/wined3d/context.c
+++ b/dlls/wined3d/context.c
@@ -3232,8 +3232,8 @@ static BOOL fixed_get_input(BYTE usage, BYTE usage_idx, unsigned int *regnum)
         *regnum = WINED3D_FFP_TEXCOORD0 + usage_idx;
     else
     {
-        FIXME("Unsupported input stream [usage=%s, usage_idx=%u].\n", debug_d3ddeclusage(usage), usage_idx);
-        *regnum = ~0U;
+        WARN("Unsupported input stream [usage=%s, usage_idx=%u].\n", debug_d3ddeclusage(usage), usage_idx);
+        *regnum = ~0u;
         return FALSE;
     }
 
-- 
2.1.4




More information about the wine-patches mailing list