diff options
| author | 2017-10-10 17:32:14 -0400 | |
|---|---|---|
| committer | 2017-10-10 17:32:14 -0400 | |
| commit | 0906de9a14b735d1d409290ca050eb7d2c2d3d84 (patch) | |
| tree | 79bb57d3a4dc4ca377e7a62744c3941de29e785b /src/citra/config.cpp | |
| parent | Merge remote-tracking branch 'upstream/master' into nx (diff) | |
| download | yuzu-0906de9a14b735d1d409290ca050eb7d2c2d3d84.tar.gz yuzu-0906de9a14b735d1d409290ca050eb7d2c2d3d84.tar.xz yuzu-0906de9a14b735d1d409290ca050eb7d2c2d3d84.zip | |
hle: Remove a large amount of 3ds-specific service code.
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 45c28ad09..432bf2ced 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -134,21 +134,6 @@ void Config::ReadValues() { | |||
| 134 | Settings::values.region_value = | 134 | Settings::values.region_value = |
| 135 | sdl2_config->GetInteger("System", "region_value", Settings::REGION_VALUE_AUTO_SELECT); | 135 | sdl2_config->GetInteger("System", "region_value", Settings::REGION_VALUE_AUTO_SELECT); |
| 136 | 136 | ||
| 137 | // Camera | ||
| 138 | using namespace Service::CAM; | ||
| 139 | Settings::values.camera_name[OuterRightCamera] = | ||
| 140 | sdl2_config->Get("Camera", "camera_outer_right_name", "blank"); | ||
| 141 | Settings::values.camera_config[OuterRightCamera] = | ||
| 142 | sdl2_config->Get("Camera", "camera_outer_right_config", ""); | ||
| 143 | Settings::values.camera_name[InnerCamera] = | ||
| 144 | sdl2_config->Get("Camera", "camera_inner_name", "blank"); | ||
| 145 | Settings::values.camera_config[InnerCamera] = | ||
| 146 | sdl2_config->Get("Camera", "camera_inner_config", ""); | ||
| 147 | Settings::values.camera_name[OuterLeftCamera] = | ||
| 148 | sdl2_config->Get("Camera", "camera_outer_left_name", "blank"); | ||
| 149 | Settings::values.camera_config[OuterLeftCamera] = | ||
| 150 | sdl2_config->Get("Camera", "camera_outer_left_config", ""); | ||
| 151 | |||
| 152 | // Miscellaneous | 137 | // Miscellaneous |
| 153 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info"); | 138 | Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Info"); |
| 154 | 139 | ||