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
e08f2421
There was an error fetching the commit references. Please try again later.
Commit
e08f2421
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
fixed bug where svc_ControlMemory was not properly getting passed in parameters
parent
890c7261
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/hle/syscall.cpp
+2
-2
2 additions, 2 deletions
src/core/hle/syscall.cpp
with
2 additions
and
2 deletions
src/core/hle/syscall.cpp
+
2
−
2
View file @
e08f2421
...
...
@@ -26,7 +26,7 @@ enum MapMemoryPermission {
};
/// Map application or GSP heap memory
Result
ControlMemory
(
void
*
outaddr
,
u32
addr0
,
u32
addr1
,
u32
size
,
u32
operation
,
u32
permissions
)
{
Result
ControlMemory
(
u32
operation
,
u32
addr0
,
u32
addr1
,
u32
size
,
u32
permissions
)
{
u32
virtual_address
=
0x00000000
;
switch
(
operation
)
{
...
...
@@ -93,7 +93,7 @@ Result WaitSynchronization1(Handle handle, s64 nanoseconds) {
const
HLE
::
FunctionDef
Syscall_Table
[]
=
{
{
0x00
,
NULL
,
"Unknown"
},
{
0x01
,
WrapI_
V
UUUUU
<
ControlMemory
>
,
"ControlMemory"
},
{
0x01
,
WrapI_UUUUU
<
ControlMemory
>
,
"ControlMemory"
},
{
0x02
,
NULL
,
"QueryMemory"
},
{
0x03
,
NULL
,
"ExitProcess"
},
{
0x04
,
NULL
,
"GetProcessAffinityMask"
},
...
...
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