Take two?

This commit is contained in:
gibbed 2017-08-08 01:49:53 -05:00
parent 19627a6cb2
commit 3aa5a70827
1 changed files with 2 additions and 2 deletions

View File

@ -877,8 +877,8 @@ bool VulkanCommandProcessor::IssueCopy() {
// Render targets 0-3, 4 = depth
uint32_t copy_src_select = copy_regs->copy_control.copy_src_select;
bool color_clear_enabled = copy_regs->copy_control.color_clear_enable;
bool depth_clear_enabled = copy_regs->copy_control.depth_clear_enable;
bool color_clear_enabled = static_cast<bool>(copy_regs->copy_control.color_clear_enable);
bool depth_clear_enabled = static_cast<bool>(copy_regs->copy_control.depth_clear_enable);
CopyCommand copy_command = copy_regs->copy_control.copy_command;
assert_true(copy_regs->copy_dest_info.copy_dest_array == 0);