add newlines

This commit is contained in:
trixie 2024-04-21 20:53:10 -04:00
parent d680dcdfac
commit 51fed4abb3
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#include "KingSystem/Quest/qstQuest.h" #include "KingSystem/Quest/qstQuest.h"
#include "KingSystem/System/ProductReporter.h" #include "KingSystem/System/ProductReporter.h"
#include "KingSystem/System/StageInfo.h" #include "KingSystem/System/StageInfo.h"
namespace uking { namespace uking {
unsigned 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) {
@ -50,6 +51,7 @@ void reportDungeon(const sead::SafeString& name, const sead::SafeString& event)
reporter->saveReport(&report); reporter->saveReport(&report);
} }
} }
void reportQuestStep(const ksys::qst::Quest* quest, int step_index) { void reportQuestStep(const ksys::qst::Quest* quest, int step_index) {
if (quest && step_index >= 0 && step_index < quest->mSteps.size()) { if (quest && step_index >= 0 && step_index < quest->mSteps.size()) {
const sead::SafeString& name = quest->mName; const sead::SafeString& name = quest->mName;

View File

@ -2,6 +2,7 @@
#include <math/seadVectorFwd.h> #include <math/seadVectorFwd.h>
#include "KingSystem/System/PlayReportMgr.h" #include "KingSystem/System/PlayReportMgr.h"
namespace ksys::qst { namespace ksys::qst {
struct Quest; struct Quest;
} }