Skip to content

Commit

Permalink
matching reportQuestStep
Browse files Browse the repository at this point in the history
  • Loading branch information
trixie909 committed Apr 22, 2024
1 parent 420af1c commit bb9c6bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/uking_functions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -61183,7 +61183,7 @@ Address,Quality,Size,Name
0x0000007100a86ec8,O,000360,_ZN5uking10PlayReportC1ERKN4sead15FixedSafeStringILi32EEEiPNS1_4HeapE
0x0000007100a87030,O,001116,_ZN5uking10PlayReport10addMapTypeEv
0x0000007100a8748c,O,000908,_ZN5uking13reportDungeonERKN4sead14SafeStringBaseIcEES4_
0x0000007100a87818,W,001256,_ZN5uking15reportQuestStepEPKN4ksys3qst5QuestEi
0x0000007100a87818,O,001256,_ZN5uking15reportQuestStepEPKN4ksys3qst5QuestEi
0x0000007100a87d00,U,002908,getQuestId
0x0000007100a8885c,U,000528,uking::reportGanonQuestFinished
0x0000007100a88a6c,U,001740,uking::reportGameOver
Expand Down
4 changes: 2 additions & 2 deletions src/Game/gamePlayReport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "KingSystem/System/StageInfo.h"
#include "KingSystem/Quest/qstQuest.h"
namespace uking {
int getQuestId(const sead::SafeString& quest_name);
unsigned int getQuestId(const sead::SafeString& quest_name);
void reportKorok(const sead::Vector3f& position) {
ksys::ProductReporter::getSomeBool();
s32 id = ksys::gdt::getFlag_HiddenKorok_Number();
Expand Down Expand Up @@ -57,7 +57,7 @@ void reportQuestStep(const ksys::qst::Quest* quest, int step_index) {

ksys::ProductReporter::getSomeBool();

const int quest_id = getQuestId(name);
const unsigned int quest_id = getQuestId(name);

PlayReport report(sead::SafeString("challenge"), 7,
ksys::PlayReportMgr::instance()->getReporter()->getHeap());
Expand Down

0 comments on commit bb9c6bf

Please sign in to comment.