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
3687a805
There was an error fetching the commit references. Please try again later.
Commit
3687a805
authored
8 years ago
by
wwylele
Browse files
Options
Downloads
Patches
Plain Diff
Service::CFG: name sound output modes
parent
de79b6fc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/hle/service/cfg/cfg.cpp
+1
-2
1 addition, 2 deletions
src/core/hle/service/cfg/cfg.cpp
src/core/hle/service/cfg/cfg.h
+6
-0
6 additions, 0 deletions
src/core/hle/service/cfg/cfg.h
with
7 additions
and
2 deletions
src/core/hle/service/cfg/cfg.cpp
+
1
−
2
View file @
3687a805
...
...
@@ -73,8 +73,7 @@ static const ConsoleModelInfo CONSOLE_MODEL = { NINTENDO_3DS_XL, { 0, 0, 0 } };
static
const
u8
CONSOLE_LANGUAGE
=
LANGUAGE_EN
;
static
const
UsernameBlock
CONSOLE_USERNAME_BLOCK
=
{
u"CITRA"
,
0
,
0
};
static
const
BirthdayBlock
PROFILE_BIRTHDAY
=
{
3
,
25
};
// March 25th, 2014
/// TODO(Subv): Find out what this actually is
static
const
u8
SOUND_OUTPUT_MODE
=
2
;
static
const
u8
SOUND_OUTPUT_MODE
=
SOUND_SURROUND
;
static
const
u8
UNITED_STATES_COUNTRY_ID
=
49
;
/// TODO(Subv): Find what the other bytes are
static
const
ConsoleCountryInfo
COUNTRY_INFO
=
{
{
0
,
0
,
0
},
UNITED_STATES_COUNTRY_ID
};
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/cfg/cfg.h
+
6
−
0
View file @
3687a805
...
...
@@ -38,6 +38,12 @@ enum SystemLanguage {
LANGUAGE_RU
=
10
};
enum
SoundOutputMode
{
SOUND_MONO
=
0
,
SOUND_STEREO
=
1
,
SOUND_SURROUND
=
2
};
/// Block header in the config savedata file
struct
SaveConfigBlockEntry
{
u32
block_id
;
///< The id of the current block
...
...
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