1
0
Fork 0
mirror of https://git.h3cjp.net/H3cJP/citra.git synced 2025-03-24 19:09:27 +00:00

nvdisp_disp0: Fix broken assert.

This commit is contained in:
bunnei 2018-01-11 22:29:29 -05:00
parent 039fc7f985
commit ac2feaf5fb

View file

@ -14,7 +14,7 @@ namespace NVDRV {
namespace Devices {
u32 nvdisp_disp0::ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) {
ASSERT(false, "Unimplemented");
UNIMPLEMENTED();
return 0;
}