diff options
| author | 2018-01-11 22:29:29 -0500 | |
|---|---|---|
| committer | 2018-01-11 22:29:29 -0500 | |
| commit | ac2feaf5fbb11924319f662ad15397958837b2c9 (patch) | |
| tree | d712466365b35e357bab5b1ad87f7f1ee39a92ed /src | |
| parent | core: Fix recent GCC build breaks. (diff) | |
| download | yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.gz yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.xz yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.zip | |
nvdisp_disp0: Fix broken assert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp index 1a885f40a..452987097 100644 --- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp +++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | |||
| @@ -14,7 +14,7 @@ namespace NVDRV { | |||
| 14 | namespace Devices { | 14 | namespace Devices { |
| 15 | 15 | ||
| 16 | u32 nvdisp_disp0::ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) { | 16 | u32 nvdisp_disp0::ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) { |
| 17 | ASSERT(false, "Unimplemented"); | 17 | UNIMPLEMENTED(); |
| 18 | return 0; | 18 | return 0; |
| 19 | } | 19 | } |
| 20 | 20 | ||