mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
Use const for appletQueryApplicationPlayStatistics.
This commit is contained in:
parent
2ccaa302a1
commit
2e3fd9bd9f
@ -203,7 +203,7 @@ Result appletEndBlockingHomeButton(void);
|
||||
* @param count Total entries in the input/output arrays.
|
||||
* @param out Output s32.
|
||||
*/
|
||||
Result appletQueryApplicationPlayStatistics(AppletApplicationPlayStatistics *stats, u64 *titleIDs, s32 count, s32 *out);
|
||||
Result appletQueryApplicationPlayStatistics(AppletApplicationPlayStatistics *stats, const u64 *titleIDs, s32 count, s32 *out);
|
||||
|
||||
/**
|
||||
* @brief Delay exiting until \ref appletUnlockExit is called, with a 15 second timeout once exit is requested.
|
||||
|
@ -1123,7 +1123,7 @@ Result appletInitializeGamePlayRecording(void) {
|
||||
}
|
||||
|
||||
//Official sw has this under 'pdm'.
|
||||
Result appletQueryApplicationPlayStatistics(AppletApplicationPlayStatistics *stats, u64 *titleIDs, s32 count, s32 *out) {
|
||||
Result appletQueryApplicationPlayStatistics(AppletApplicationPlayStatistics *stats, const u64 *titleIDs, s32 count, s32 *out) {
|
||||
IpcCommand c;
|
||||
ipcInitialize(&c);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user