mirror of https://github.com/zeldaret/botw.git
matching reportQuestStep
This commit is contained in:
parent
420af1c0d2
commit
bb9c6bfc94
|
@ -61183,7 +61183,7 @@ Address,Quality,Size,Name
|
||||||
0x0000007100a86ec8,O,000360,_ZN5uking10PlayReportC1ERKN4sead15FixedSafeStringILi32EEEiPNS1_4HeapE
|
0x0000007100a86ec8,O,000360,_ZN5uking10PlayReportC1ERKN4sead15FixedSafeStringILi32EEEiPNS1_4HeapE
|
||||||
0x0000007100a87030,O,001116,_ZN5uking10PlayReport10addMapTypeEv
|
0x0000007100a87030,O,001116,_ZN5uking10PlayReport10addMapTypeEv
|
||||||
0x0000007100a8748c,O,000908,_ZN5uking13reportDungeonERKN4sead14SafeStringBaseIcEES4_
|
0x0000007100a8748c,O,000908,_ZN5uking13reportDungeonERKN4sead14SafeStringBaseIcEES4_
|
||||||
0x0000007100a87818,W,001256,_ZN5uking15reportQuestStepEPKN4ksys3qst5QuestEi
|
0x0000007100a87818,O,001256,_ZN5uking15reportQuestStepEPKN4ksys3qst5QuestEi
|
||||||
0x0000007100a87d00,U,002908,getQuestId
|
0x0000007100a87d00,U,002908,getQuestId
|
||||||
0x0000007100a8885c,U,000528,uking::reportGanonQuestFinished
|
0x0000007100a8885c,U,000528,uking::reportGanonQuestFinished
|
||||||
0x0000007100a88a6c,U,001740,uking::reportGameOver
|
0x0000007100a88a6c,U,001740,uking::reportGameOver
|
||||||
|
|
Can't render this file because it is too large.
|
|
@ -7,7 +7,7 @@
|
||||||
#include "KingSystem/System/StageInfo.h"
|
#include "KingSystem/System/StageInfo.h"
|
||||||
#include "KingSystem/Quest/qstQuest.h"
|
#include "KingSystem/Quest/qstQuest.h"
|
||||||
namespace uking {
|
namespace uking {
|
||||||
int getQuestId(const sead::SafeString& quest_name);
|
unsigned int getQuestId(const sead::SafeString& quest_name);
|
||||||
void reportKorok(const sead::Vector3f& position) {
|
void reportKorok(const sead::Vector3f& position) {
|
||||||
ksys::ProductReporter::getSomeBool();
|
ksys::ProductReporter::getSomeBool();
|
||||||
s32 id = ksys::gdt::getFlag_HiddenKorok_Number();
|
s32 id = ksys::gdt::getFlag_HiddenKorok_Number();
|
||||||
|
@ -57,7 +57,7 @@ void reportQuestStep(const ksys::qst::Quest* quest, int step_index) {
|
||||||
|
|
||||||
ksys::ProductReporter::getSomeBool();
|
ksys::ProductReporter::getSomeBool();
|
||||||
|
|
||||||
const int quest_id = getQuestId(name);
|
const unsigned int quest_id = getQuestId(name);
|
||||||
|
|
||||||
PlayReport report(sead::SafeString("challenge"), 7,
|
PlayReport report(sead::SafeString("challenge"), 7,
|
||||||
ksys::PlayReportMgr::instance()->getReporter()->getHeap());
|
ksys::PlayReportMgr::instance()->getReporter()->getHeap());
|
||||||
|
|
Loading…
Reference in New Issue