Skip to content

Commit

Permalink
Unlink vsGameSection.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartPiece44 authored and EpochFlame committed Sep 20, 2023
1 parent fb539fc commit a827cbb
Show file tree
Hide file tree
Showing 9 changed files with 8,754 additions and 8 deletions.
8,742 changes: 8,742 additions & 0 deletions asm/plugProjectKandoU/vsGameSection.s

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@
"plugProjectKandoU/gameSystem",
["plugProjectKandoU/aiConstants", True],
"plugProjectKandoU/gameMapParts",
["plugProjectKandoU/vsGameSection", True],
"plugProjectKandoU/vsGameSection",
"plugProjectKandoU/gamePlatMgr",
"plugProjectKandoU/itemGate",
"plugProjectKandoU/itemMgr",
Expand Down
3 changes: 2 additions & 1 deletion include/Game/BaseItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ struct CItemFSM : public StateMachine<CFSMItem> {
};

template <typename T>
struct ItemFSM : public StateMachine<T> { };
struct ItemFSM : public StateMachine<T> {
};

struct CItemState : public FSMState<CFSMItem> {
inline CItemState(int id)
Expand Down
3 changes: 2 additions & 1 deletion include/Game/StateMachine.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ template <typename T>
struct StateMachine;

// if it gets used, it's a derived struct.
struct StateArg { };
struct StateArg {
};

template <typename T>
struct FSMState {
Expand Down
3 changes: 2 additions & 1 deletion include/Game/itemMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ namespace Game {
struct BaseItem;
struct WayPoint;

struct _BaseItemMgrParent2 { };
struct _BaseItemMgrParent2 {
};

struct BaseItemMgr : public GenericObjectMgr, virtual public _BaseItemMgrParent2 {
BaseItemMgr(int);
Expand Down
3 changes: 2 additions & 1 deletion include/efx/TPk.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ struct TPkNageBlur : public TChaseMtx {
};

// Needed for dtor
struct PtrlistContext : public JSUPtrList { };
struct PtrlistContext : public JSUPtrList {
};

struct TPkOneEmitterSimple : public TBase, public JPAEmitterCallBack {
// vtable 1 (TBase)
Expand Down
2 changes: 1 addition & 1 deletion src/plugProjectKandoU/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ KANDO_FILES:=\
$(BUILD_DIR)/asm/plugProjectKandoU/gameSystem.o\
$(BUILD_DIR)/src/plugProjectKandoU/aiConstants.o\
$(BUILD_DIR)/asm/plugProjectKandoU/gameMapParts.o\
$(BUILD_DIR)/src/plugProjectKandoU/vsGameSection.o\
$(BUILD_DIR)/asm/plugProjectKandoU/vsGameSection.o\
$(BUILD_DIR)/asm/plugProjectKandoU/gamePlatMgr.o\
$(BUILD_DIR)/asm/plugProjectKandoU/itemGate.o\
$(BUILD_DIR)/asm/plugProjectKandoU/itemMgr.o\
Expand Down
2 changes: 1 addition & 1 deletion src/plugProjectKandoU/itemBarrel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ Mgr::Mgr()
mObjectPathComponent = "user/Kando/objects/barrel";
mParms = new BarrelParms();
void* resource = JKRDvdRipper::loadToMainRAM("user/Abe/item/barrelParms.txt", nullptr, Switch_0, 0, nullptr,
JKRDvdRipper::ALLOC_DIR_BOTTOM, 0, nullptr, nullptr);
JKRDvdRipper::ALLOC_DIR_BOTTOM, 0, nullptr, nullptr);
if (resource) {
RamStream stream(resource, -1);
stream.resetPosition(true, true);
Expand Down
2 changes: 1 addition & 1 deletion src/plugProjectKandoU/itemBigFountain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,7 @@ ItemBigFountain::Mgr::Mgr()
mName = "‹AŠÒŠÔŒ‡ò";
mParms = new FountainParms();
void* data = JKRDvdRipper::loadToMainRAM("user/Abe/item/fountainParms.txt", nullptr, Switch_0, 0, nullptr,
JKRDvdRipper::ALLOC_DIR_BOTTOM, 0, nullptr, nullptr);
JKRDvdRipper::ALLOC_DIR_BOTTOM, 0, nullptr, nullptr);
if (data != nullptr) {
RamStream input(data, -1);
input.resetPosition(true, 1);
Expand Down

0 comments on commit a827cbb

Please sign in to comment.