Module: wine Branch: master Commit: d76e3ac9c6ab25c9270b79e71cc392daec1826ce URL: http://source.winehq.org/git/wine.git/?a=commit;h=d76e3ac9c6ab25c9270b79e71c...
Author: Matteo Bruni matteo.mystral@gmail.com Date: Sat Jul 17 21:57:38 2010 +0200
d3dx9: Improve a FIXME.
---
dlls/d3dx9_36/bytecodewriter.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/d3dx9_36/bytecodewriter.c b/dlls/d3dx9_36/bytecodewriter.c index b444365..9fe2bfc 100644 --- a/dlls/d3dx9_36/bytecodewriter.c +++ b/dlls/d3dx9_36/bytecodewriter.c @@ -1825,7 +1825,8 @@ static HRESULT call_instr_handler(struct bc_writer *writer, i++; }
- FIXME("Unhandled instruction %u\n", instr->opcode); + FIXME("Unhandled instruction %u - %s\n", instr->opcode, + debug_print_opcode(instr->opcode)); return E_INVALIDARG; }