diff options
| author | rozlette <Rozelette@users.noreply.github.com> | 2022-04-30 20:31:11 -0500 |
|---|---|---|
| committer | Kenix3 <kenixwhisperwind@gmail.com> | 2022-05-01 01:27:00 -0400 |
| commit | d0c5e7aa0e9d74a16f205da131f8aec2c511761e (patch) | |
| tree | e9b28b48b31cea85376b593deacff87cc8a35b66 /soh/src/code/graph.c | |
| parent | e4dd7027a9f4f36a199545dc30e05955444030be (diff) | |
Add collision viewer
Diffstat (limited to 'soh/src/code/graph.c')
| -rw-r--r-- | soh/src/code/graph.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/soh/src/code/graph.c b/soh/src/code/graph.c index 5d0495961..9f744ec02 100644 --- a/soh/src/code/graph.c +++ b/soh/src/code/graph.c @@ -5,6 +5,7 @@ #include <string.h> #include "soh/Enhancements/gameconsole.h" +#include "soh/Enhancements/debugger/debugger.h" #define GFXPOOL_HEAD_MAGIC 0x1234 #define GFXPOOL_TAIL_MAGIC 0x5678 @@ -282,6 +283,7 @@ void Graph_Update(GraphicsContext* gfxCtx, GameState* gameState) { GameState_ReqPadData(gameState); GameState_Update(gameState); + Debug_Draw(); OPEN_DISPS(gfxCtx, "../graph.c", 987); |
