mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
11 lines
346 B
C++
11 lines
346 B
C++
#include <nn/hac/ApplicationControlPropertyUtils.h>
|
|
|
|
bool nn::hac::ApplicationControlPropertyUtils::validateSaveDataSizeMax(int64_t size, int64_t alignment)
|
|
{
|
|
return (alignment != 0 && (size & (alignment - 1)) != 0) == false;
|
|
}
|
|
|
|
bool nn::hac::ApplicationControlPropertyUtils::validateSaveDataSize(int64_t size)
|
|
{
|
|
return (size & 0x3fff) == 0;
|
|
}
|