summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvmap.cpp')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvmap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.cpp b/src/core/hle/service/nvdrv/devices/nvmap.cpp
index fdf2f7be5..4d6b9cfce 100644
--- a/src/core/hle/service/nvdrv/devices/nvmap.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvmap.cpp
@@ -33,7 +33,7 @@ u32 nvmap::ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& out
return IocParam(input, output);
}
- ASSERT(false, "Unimplemented");
+ UNIMPLEMENTED();
}
u32 nvmap::IocCreate(const std::vector<u8>& input, std::vector<u8>& output) {
@@ -141,7 +141,7 @@ u32 nvmap::IocParam(const std::vector<u8>& input, std::vector<u8>& output) {
params.value = object->kind;
break;
default:
- ASSERT(false, "Unimplemented");
+ UNIMPLEMENTED();
}
std::memcpy(output.data(), &params, sizeof(params));