VideoBackends: Fix -Wswitch warnings

master
Léo Lam 2017-12-02 21:52:07 +01:00
parent 67ba326ff6
commit d95177526f
1 changed files with 4 additions and 0 deletions

View File

@ -1441,6 +1441,8 @@ void EncodeEfbCopy(u8* dst, const EFBCopyParams& params, u32 native_width, u32 b
case PEControl::Z24:
EncodeZ24halfscale(dst, src, params.copy_format);
break;
default:
break;
}
}
else
@ -1459,6 +1461,8 @@ void EncodeEfbCopy(u8* dst, const EFBCopyParams& params, u32 native_width, u32 b
case PEControl::Z24:
EncodeZ24(dst, src, params.copy_format);
break;
default:
break;
}
}
}