mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-23 03:29:45 +00:00
99fc2e4c58
Basically cleaning up and making sure functions succeed before returning the result.
23 lines
353 B
C
23 lines
353 B
C
#include "am.h"
|
|
#include "misc.h"
|
|
#include "utils.h"
|
|
|
|
u32 titleCount(FS_MediaType mediaType)
|
|
{
|
|
u32 count = 0;
|
|
|
|
if (R_SUCCEEDED(AM_GetTitleCount(mediaType, &count)))
|
|
return count;
|
|
|
|
return 0;
|
|
}
|
|
|
|
char * getDeviceCert(void)
|
|
{
|
|
u8 const cert[0x180];
|
|
|
|
if (R_SUCCEEDED(amNetGetDeviceCert(cert)))
|
|
return base64Encode(cert, 0x180);
|
|
|
|
return NULL;
|
|
} |