Commit 80e4d899 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

d3dcompiler_43: Avoid signed-unsigned integer comparisons.

parent 23fde785
......@@ -609,7 +609,7 @@ static void write_declarations(struct bc_writer *This,
}
static void write_const(struct constant **consts, int num, DWORD opcode, DWORD reg_type, struct bytecode_buffer *buffer, BOOL len) {
DWORD i;
int i;
DWORD instr_def = opcode;
const DWORD reg = (1<<31) |
((reg_type << D3DSP_REGTYPE_SHIFT) & D3DSP_REGTYPE_MASK) |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment