Fix compile warning on not-supported LOG_TEST_CASE macro arguments
This commit is contained in:
parent
3db98e4e90
commit
cc7e1a4069
|
@ -1255,7 +1255,7 @@ DWORD* GetCxbxVertexShaderSlotPtr(const DWORD SlotIndexAddress)
|
||||||
if (SlotIndexAddress < X_VSH_MAX_INSTRUCTION_COUNT) {
|
if (SlotIndexAddress < X_VSH_MAX_INSTRUCTION_COUNT) {
|
||||||
return &g_CxbxVertexShaderSlots[SlotIndexAddress * X_VSH_INSTRUCTION_SIZE];
|
return &g_CxbxVertexShaderSlots[SlotIndexAddress * X_VSH_INSTRUCTION_SIZE];
|
||||||
} else {
|
} else {
|
||||||
LOG_TEST_CASE("SlotIndexAddress %d out of range", SlotIndexAddress);
|
LOG_TEST_CASE("SlotIndexAddress out of range"); // FIXME : extend with value (once supported by LOG_TEST_CASE)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue