summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2021-05-05 16:16:02 -0700
committerGravatar GitHub2021-05-05 16:16:02 -0700
commit0b7a03bd657fa001e1f1ee8887900886b46db013 (patch)
tree3d822ccfce8471d0d939002d49bfdcdad68da421 /src
parentnvdrv: /dev/nvhost-prof-gpu for production (diff)
downloadyuzu-0b7a03bd657fa001e1f1ee8887900886b46db013.tar.gz
yuzu-0b7a03bd657fa001e1f1ee8887900886b46db013.tar.xz
yuzu-0b7a03bd657fa001e1f1ee8887900886b46db013.zip
Update src/core/hle/service/nvdrv/interface.cpp
Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp
index 6d1fef382..eff9c3cc9 100644
--- a/src/core/hle/service/nvdrv/interface.cpp
+++ b/src/core/hle/service/nvdrv/interface.cpp
@@ -40,7 +40,7 @@ void NVDRV::Open(Kernel::HLERequestContext& ctx) {
40 rb.Push<DeviceFD>(0); 40 rb.Push<DeviceFD>(0);
41 rb.PushEnum(NvResult::NotSupported); 41 rb.PushEnum(NvResult::NotSupported);
42 42
43 LOG_WARNING(Service_NVDRV, "/dev/nvhost-prof-gpu cannot be openned on production"); 43 LOG_WARNING(Service_NVDRV, "/dev/nvhost-prof-gpu cannot be opened in production");
44 return; 44 return;
45 } 45 }
46 46