Warnings: Fixed a few missing-return warnings in video_core.

This commit is contained in:
Subv 2017-08-21 12:18:52 -05:00
parent 46d1ca768d
commit da88f3b8f0
3 changed files with 10 additions and 6 deletions

View file

@ -352,6 +352,8 @@ u8 LogicOp(u8 src, u8 dest, FramebufferRegs::LogicOp op) {
case FramebufferRegs::LogicOp::OrInverted:
return ~src | dest;
}
UNREACHABLE();
};
} // namespace Rasterizer