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
2682e773
There was an error fetching the commit references. Please try again later.
Commit
2682e773
authored
1 year ago
by
niansa
Committed by
JuanCStar
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Apply GetGroupInfo fix to ISfServiceMonitor too
parent
2ba2db77
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/ldn/sf_service_monitor.cpp
+2
-2
2 additions, 2 deletions
src/core/hle/service/ldn/sf_service_monitor.cpp
src/core/hle/service/ldn/sf_service_monitor.h
+1
-1
1 addition, 1 deletion
src/core/hle/service/ldn/sf_service_monitor.h
with
3 additions
and
3 deletions
src/core/hle/service/ldn/sf_service_monitor.cpp
+
2
−
2
View file @
2682e773
...
@@ -39,11 +39,11 @@ Result ISfServiceMonitor::Initialize(Out<u32> out_value) {
...
@@ -39,11 +39,11 @@ Result ISfServiceMonitor::Initialize(Out<u32> out_value) {
R_SUCCEED
();
R_SUCCEED
();
}
}
Result
ISfServiceMonitor
::
GetGroupInfo
(
Result
ISfServiceMonitor
::
GetGroupInfo
(
GroupInfo
in_group_info
,
OutLargeData
<
GroupInfo
,
BufferAttr_HipcAutoSelect
>
out_group_info
)
{
OutLargeData
<
GroupInfo
,
BufferAttr_HipcAutoSelect
>
out_group_info
)
{
LOG_WARNING
(
Service_LDN
,
"(STUBBED) called"
);
LOG_WARNING
(
Service_LDN
,
"(STUBBED) called"
);
*
out_group_info
=
GroupInfo
{}
;
memcpy
(
out_group_info
,
&
in_group_info
,
sizeof
(
GroupInfo
))
;
R_SUCCEED
();
R_SUCCEED
();
}
}
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/ldn/sf_service_monitor.h
+
1
−
1
View file @
2682e773
...
@@ -20,7 +20,7 @@ public:
...
@@ -20,7 +20,7 @@ public:
private:
private:
Result
Initialize
(
Out
<
u32
>
out_value
);
Result
Initialize
(
Out
<
u32
>
out_value
);
Result
GetGroupInfo
(
OutLargeData
<
GroupInfo
,
BufferAttr_HipcAutoSelect
>
out_group_info
);
Result
GetGroupInfo
(
GroupInfo
in_group_info
,
OutLargeData
<
GroupInfo
,
BufferAttr_HipcAutoSelect
>
out_group_info
);
};
};
}
// namespace Service::LDN
}
// namespace Service::LDN
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