mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
16 lines
No EOL
374 B
C++
16 lines
No EOL
374 B
C++
#include <nn/hac/IdConverter.h>
|
|
|
|
uint64_t nn::hac::IdConverter::convertToAocBaseId(uint64_t application_id)
|
|
{
|
|
return application_id + kAocBaseId;
|
|
}
|
|
|
|
uint64_t nn::hac::IdConverter::convertToDeltaId(uint64_t application_id)
|
|
{
|
|
return application_id + kDeltaId;
|
|
}
|
|
|
|
uint64_t nn::hac::IdConverter::convertToPatchId(uint64_t application_id)
|
|
{
|
|
return application_id + kPatchId;
|
|
} |