Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
fixed const qualified argument in receive msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Strelsky committed Sep 19, 2023
1 parent 58c8e1c commit 7cc14bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/source/msg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ struct AppMessage;

extern "C" uint32_t sceAppMessagingSendMsg(uint32_t appId, uint32_t msgType, const void *msg, size_t msgLength, uint32_t flags);

extern "C" int sceAppMessagingReceiveMsg(const AppMessage *msg);
extern "C" int sceAppMessagingReceiveMsg(AppMessage *msg);

struct AppMessage {
static constexpr size_t PAYLOAD_SIZE = 8192;
Expand Down

0 comments on commit 7cc14bd

Please sign in to comment.