Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
c106f71b
There was an error fetching the commit references. Please try again later.
Commit
c106f71b
authored
8 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
New3DS: Minor style cleanup to #1520.
parent
2e5e7d9b
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/citra/config.cpp
+1
-1
1 addition, 1 deletion
src/citra/config.cpp
src/citra_qt/config.cpp
+2
-2
2 additions, 2 deletions
src/citra_qt/config.cpp
src/core/hle/service/ptm/ptm.cpp
+2
-2
2 additions, 2 deletions
src/core/hle/service/ptm/ptm.cpp
src/core/settings.h
+1
-1
1 addition, 1 deletion
src/core/settings.h
with
6 additions
and
6 deletions
src/citra/config.cpp
+
1
−
1
View file @
c106f71b
...
...
@@ -78,7 +78,7 @@ void Config::ReadValues() {
Settings
::
values
.
use_virtual_sd
=
sdl2_config
->
GetBoolean
(
"Data Storage"
,
"use_virtual_sd"
,
true
);
// System
Settings
::
values
.
is_new3ds
=
sdl2_config
->
GetBoolean
(
"System"
,
"is_new3ds"
,
false
);
Settings
::
values
.
is_new
_
3ds
=
sdl2_config
->
GetBoolean
(
"System"
,
"is_new
_
3ds"
,
false
);
Settings
::
values
.
region_value
=
sdl2_config
->
GetInteger
(
"System"
,
"region_value"
,
1
);
// Miscellaneous
...
...
This diff is collapsed.
Click to expand it.
src/citra_qt/config.cpp
+
2
−
2
View file @
c106f71b
...
...
@@ -61,7 +61,7 @@ void Config::ReadValues() {
qt_config
->
endGroup
();
qt_config
->
beginGroup
(
"System"
);
Settings
::
values
.
is_new3ds
=
qt_config
->
value
(
"is_new3ds"
,
false
).
toBool
();
Settings
::
values
.
is_new
_
3ds
=
qt_config
->
value
(
"is_new
_
3ds"
,
false
).
toBool
();
Settings
::
values
.
region_value
=
qt_config
->
value
(
"region_value"
,
1
).
toInt
();
qt_config
->
endGroup
();
...
...
@@ -152,7 +152,7 @@ void Config::SaveValues() {
qt_config
->
endGroup
();
qt_config
->
beginGroup
(
"System"
);
qt_config
->
setValue
(
"is_new3ds"
,
Settings
::
values
.
is_new3ds
);
qt_config
->
setValue
(
"is_new
_
3ds"
,
Settings
::
values
.
is_new
_
3ds
);
qt_config
->
setValue
(
"region_value"
,
Settings
::
values
.
region_value
);
qt_config
->
endGroup
();
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/ptm/ptm.cpp
+
2
−
2
View file @
c106f71b
...
...
@@ -91,10 +91,10 @@ void IsLegacyPowerOff(Service::Interface* self) {
void
CheckNew3DS
(
Service
::
Interface
*
self
)
{
u32
*
cmd_buff
=
Kernel
::
GetCommandBuffer
();
const
bool
is_new_3ds
=
Settings
::
values
.
is_new3ds
;
const
bool
is_new_3ds
=
Settings
::
values
.
is_new
_
3ds
;
if
(
is_new_3ds
)
{
LOG_CRITICAL
(
Service_PTM
,
"The option 'is_new3ds' is enabled as part of the 'System' settings. Citra does not fully support New3DS emulation yet!"
);
LOG_CRITICAL
(
Service_PTM
,
"The option 'is_new
_
3ds' is enabled as part of the 'System' settings. Citra does not fully support New
3DS emulation yet!"
);
}
cmd_buff
[
1
]
=
RESULT_SUCCESS
.
raw
;
...
...
This diff is collapsed.
Click to expand it.
src/core/settings.h
+
1
−
1
View file @
c106f71b
...
...
@@ -42,7 +42,7 @@ static const std::array<Values, NUM_INPUTS> All = {{
struct
Values
{
// CheckNew3DS
bool
is_new3ds
;
bool
is_new
_
3ds
;
// Controls
std
::
array
<
int
,
NativeInput
::
NUM_INPUTS
>
input_mappings
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment