summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-12 04:29:29 +0100
committerbunnei <bunneidev@gmail.com>2018-01-12 04:29:29 +0100
commitac2feaf5fbb11924319f662ad15397958837b2c9 (patch)
treed712466365b35e357bab5b1ad87f7f1ee39a92ed /src/core
parentcore: Fix recent GCC build breaks. (diff)
downloadyuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar
yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.gz
yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.bz2
yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.lz
yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.xz
yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.tar.zst
yuzu-ac2feaf5fbb11924319f662ad15397958837b2c9.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp2
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 {
namespace Devices {
u32 nvdisp_disp0::ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) {
- ASSERT(false, "Unimplemented");
+ UNIMPLEMENTED();
return 0;
}