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
853b46c6
There was an error fetching the commit references. Please try again later.
Commit
853b46c6
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
Core: Change default CPU to dyncom.
parent
031237e5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/citra/default_ini.h
+1
-1
1 addition, 1 deletion
src/citra/default_ini.h
src/core/core.cpp
+2
-2
2 additions, 2 deletions
src/core/core.cpp
src/core/core.h
+1
-1
1 addition, 1 deletion
src/core/core.h
with
4 additions
and
4 deletions
src/citra/default_ini.h
+
1
−
1
View file @
853b46c6
...
@@ -27,7 +27,7 @@ pad_sleft =
...
@@ -27,7 +27,7 @@ pad_sleft =
pad_sright =
pad_sright =
[Core]
[Core]
cpu_core = ## 0: Interpreter (default), 1:
Fast
Interpreter (
experimental
)
cpu_core = ## 0: Interpreter (default), 1:
Old
Interpreter (
may work better, soon to be deprecated
)
gpu_refresh_rate = ## 30 (default)
gpu_refresh_rate = ## 30 (default)
frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc.
frame_skip = ## 0: No frameskip (default), 1 : 2x frameskip, 2 : 4x frameskip, etc.
...
...
This diff is collapsed.
Click to expand it.
src/core/core.cpp
+
2
−
2
View file @
853b46c6
...
@@ -53,10 +53,10 @@ int Init() {
...
@@ -53,10 +53,10 @@ int Init() {
g_sys_core
=
new
ARM_Interpreter
();
g_sys_core
=
new
ARM_Interpreter
();
switch
(
Settings
::
values
.
cpu_core
)
{
switch
(
Settings
::
values
.
cpu_core
)
{
case
CPU_
Fast
Interpreter
:
case
CPU_Interpreter
:
g_app_core
=
new
ARM_DynCom
();
g_app_core
=
new
ARM_DynCom
();
break
;
break
;
case
CPU_Interpreter
:
case
CPU_
Old
Interpreter
:
default:
default:
g_app_core
=
new
ARM_Interpreter
();
g_app_core
=
new
ARM_Interpreter
();
break
;
break
;
...
...
This diff is collapsed.
Click to expand it.
src/core/core.h
+
1
−
1
View file @
853b46c6
...
@@ -13,7 +13,7 @@ namespace Core {
...
@@ -13,7 +13,7 @@ namespace Core {
enum
CPUCore
{
enum
CPUCore
{
CPU_Interpreter
,
CPU_Interpreter
,
CPU_
Fast
Interpreter
CPU_
Old
Interpreter
,
};
};
extern
ARM_Interface
*
g_app_core
;
///< ARM11 application core
extern
ARM_Interface
*
g_app_core
;
///< ARM11 application core
...
...
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