mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Update KipProcess to resolve ProgramType to a string.
This commit is contained in:
parent
273ba3d14e
commit
c7336da339
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ void KipProcess::displayKernelCap(const nn::hac::KernelCapabilityControl& kern)
|
|||
}
|
||||
if (kern.getMiscParams().isSet())
|
||||
{
|
||||
std::cout << " ProgramType: " << std::dec << (uint32_t)kern.getMiscParams().getProgramType() << std::endl;
|
||||
std::cout << " ProgramType: " << nn::hac::KernelCapabilityUtil::getProgramTypeAsString(kern.getMiscParams().getProgramType()) << " (" << std::dec << (uint32_t)kern.getMiscParams().getProgramType() << ")" << std::endl;
|
||||
}
|
||||
if (kern.getKernelVersion().isSet())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue