diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-09-14 18:42:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-14 15:42:57 -0700 |
| commit | c754cf4e2ab7852976633b409e34d9436ab22f3d (patch) | |
| tree | 8a9012a6f07fec53a7d8e31ffd5a52309ca7fbb1 /src/d/d_path.cpp | |
| parent | b0eb3c4f2bf21e1a16b073ec9329ffc9f0cc20c9 (diff) | |
Started work on pushable boxes (#32)
* Started work on pushable boxes
* Minor fixes
* Fix inlines
* Comment GetHomeRoomNo
Diffstat (limited to 'src/d/d_path.cpp')
| -rw-r--r-- | src/d/d_path.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/d_path.cpp b/src/d/d_path.cpp index f7bc1ede..8e46db92 100644 --- a/src/d/d_path.cpp +++ b/src/d/d_path.cpp @@ -3,16 +3,16 @@ // Translation Unit: d_path.cpp // -#include "d_path.h" +#include "d/d_path.h" #include "dolphin/types.h" /* 80080018-8008010C .text dPath_GetPnt__FP5dPathi */ -void dPath_GetPnt(dPath*, int) { +dPath__Point* dPath_GetPnt(dPath*, int) { /* Nonmatching */ } /* 8008010C-80080218 .text dPath_GetRoomPath__Fii */ -void dPath_GetRoomPath(int, int) { +dPath* dPath_GetRoomPath(int, int) { /* Nonmatching */ } |
