Browse Source
Merge pull request #641 from bunnei/nvhost-ctrl-fix
nvhost_ctrl: Fix NvOsGetConfigU32 for Snipper Clips.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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
|
|
|
|
|