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
f6c53526
There was an error fetching the commit references. Please try again later.
Commit
f6c53526
authored
5 years ago
by
Zach Hilman
Browse files
Options
Downloads
Patches
Plain Diff
core/loader: Track the NSO build ID of the current process
parent
943662dc
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/core/core.cpp
+9
-0
9 additions, 0 deletions
src/core/core.cpp
src/core/core.h
+4
-0
4 additions, 0 deletions
src/core/core.h
src/core/loader/nso.cpp
+1
-0
1 addition, 0 deletions
src/core/loader/nso.cpp
with
14 additions
and
0 deletions
src/core/core.cpp
+
9
−
0
View file @
f6c53526
...
@@ -339,6 +339,7 @@ struct System::Impl {
...
@@ -339,6 +339,7 @@ struct System::Impl {
std
::
unique_ptr
<
Memory
::
CheatEngine
>
cheat_engine
;
std
::
unique_ptr
<
Memory
::
CheatEngine
>
cheat_engine
;
std
::
unique_ptr
<
Tools
::
Freezer
>
memory_freezer
;
std
::
unique_ptr
<
Tools
::
Freezer
>
memory_freezer
;
std
::
array
<
u8
,
0x20
>
build_id
{};
/// Frontend applets
/// Frontend applets
Service
::
AM
::
Applets
::
AppletManager
applet_manager
;
Service
::
AM
::
Applets
::
AppletManager
applet_manager
;
...
@@ -640,6 +641,14 @@ bool System::GetExitLock() const {
...
@@ -640,6 +641,14 @@ bool System::GetExitLock() const {
return
impl
->
exit_lock
;
return
impl
->
exit_lock
;
}
}
void
System
::
SetCurrentProcessBuildID
(
std
::
array
<
u8
,
32
>
id
)
{
impl
->
build_id
=
id
;
}
const
std
::
array
<
u8
,
32
>&
System
::
GetCurrentProcessBuildID
()
const
{
return
impl
->
build_id
;
}
System
::
ResultStatus
System
::
Init
(
Frontend
::
EmuWindow
&
emu_window
)
{
System
::
ResultStatus
System
::
Init
(
Frontend
::
EmuWindow
&
emu_window
)
{
return
impl
->
Init
(
*
this
,
emu_window
);
return
impl
->
Init
(
*
this
,
emu_window
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/core/core.h
+
4
−
0
View file @
f6c53526
...
@@ -330,6 +330,10 @@ public:
...
@@ -330,6 +330,10 @@ public:
bool
GetExitLock
()
const
;
bool
GetExitLock
()
const
;
void
SetCurrentProcessBuildID
(
std
::
array
<
u8
,
0x20
>
id
);
const
std
::
array
<
u8
,
0x20
>&
GetCurrentProcessBuildID
()
const
;
private
:
private
:
System
();
System
();
...
...
This diff is collapsed.
Click to expand it.
src/core/loader/nso.cpp
+
1
−
0
View file @
f6c53526
...
@@ -150,6 +150,7 @@ std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::Process& process,
...
@@ -150,6 +150,7 @@ std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::Process& process,
// Apply cheats if they exist and the program has a valid title ID
// Apply cheats if they exist and the program has a valid title ID
if
(
pm
)
{
if
(
pm
)
{
auto
&
system
=
Core
::
System
::
GetInstance
();
auto
&
system
=
Core
::
System
::
GetInstance
();
system
.
SetCurrentProcessBuildID
(
nso_header
.
build_id
);
const
auto
cheats
=
pm
->
CreateCheatList
(
system
,
nso_header
.
build_id
);
const
auto
cheats
=
pm
->
CreateCheatList
(
system
,
nso_header
.
build_id
);
if
(
!
cheats
.
empty
())
{
if
(
!
cheats
.
empty
())
{
system
.
RegisterCheatList
(
cheats
,
nso_header
.
build_id
,
load_base
,
image_size
);
system
.
RegisterCheatList
(
cheats
,
nso_header
.
build_id
,
load_base
,
image_size
);
...
...
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