Skip to content

Commit

Permalink
Stub ALL getNsDataIdList functions (wheremyfoodat#452)
Browse files Browse the repository at this point in the history
* fix: stub ALL getNsDataIdList functions

* fix: spaces -> tabs
  • Loading branch information
SpikeHD authored Mar 9, 2024
1 parent ff1eaed commit 57193e7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/core/services/boss.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace BOSSCommands {
GetTaskIdList = 0x000E0000,
GetNsDataIdList = 0x00100102,
GetNsDataIdList1 = 0x00110102,
GetNsDataIdList2 = 0x00120102,
GetNsDataIdList3 = 0x00130102,
SendProperty = 0x00140082,
ReceiveProperty = 0x00160082,
GetTaskServiceStatus = 0x001B0042,
Expand All @@ -40,7 +42,9 @@ void BOSSService::handleSyncRequest(u32 messagePointer) {
case BOSSCommands::GetErrorCode: getErrorCode(messagePointer); break;
case BOSSCommands::GetNewArrivalFlag: getNewArrivalFlag(messagePointer); break;
case BOSSCommands::GetNsDataIdList:
case BOSSCommands::GetNsDataIdList1:
case BOSSCommands::GetNsDataIdList1:
case BOSSCommands::GetNsDataIdList2:
case BOSSCommands::GetNsDataIdList3:
getNsDataIdList(messagePointer, command); break;
case BOSSCommands::GetOptoutFlag: getOptoutFlag(messagePointer); break;
case BOSSCommands::GetStorageEntryInfo: getStorageEntryInfo(messagePointer); break;
Expand Down

0 comments on commit 57193e7

Please sign in to comment.