diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-08 23:01:46 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-07-08 23:01:46 +0200 |
commit | 1b3dd30ba8085dda077feaff2dfdec341ee9f23d (patch) | |
tree | f6c750405f5cd1f5d7dac5e625da79443071f37f /src/core/hle | |
parent | Merge pull request #625 from Subv/imnmx (diff) | |
download | yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.tar yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.tar.gz yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.tar.bz2 yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.tar.lz yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.tar.xz yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.tar.zst yuzu-1b3dd30ba8085dda077feaff2dfdec341ee9f23d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp index 303acdcb3..315f81e90 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp @@ -40,7 +40,7 @@ u32 nvhost_ctrl::NvOsGetConfigU32(const std::vector<u8>& input, std::vector<u8>& } else if (!strcmp(params.param_str.data(), "NVRM_GPU_PREVENT_USE")) { params.config_str[0] = '0'; } else { - params.config_str[0] = '\0'; + params.config_str[0] = '0'; } } else { UNIMPLEMENTED(); // unknown domain? Only nv has been seen so far on hardware |