diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2021-12-20 07:32:41 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-19 20:32:41 +0000 |
| commit | 51ee1c2c704074895bb88254e8c43cedf5d437e2 (patch) | |
| tree | 8efbfdc7380cb5bc5062a3a8e7f3bdb2d728db45 /src/code/z_debug_display.c | |
| parent | 985852f8376c295553899bd570015a4c6aee2b79 (diff) | |
Name coordinate transformation matrix similar to OoT (#499)
* name coordiante transformation names similar to OoT
* update actorfixer
Diffstat (limited to 'src/code/z_debug_display.c')
| -rw-r--r-- | src/code/z_debug_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_debug_display.c b/src/code/z_debug_display.c index f9c9f60b4..a62d4ddb9 100644 --- a/src/code/z_debug_display.c +++ b/src/code/z_debug_display.c @@ -70,7 +70,7 @@ void DebugDisplay_DrawSpriteI8(DebugDispObject* dispObj, void* texture, GlobalCo gDPSetPrimColor(POLY_XLU_DISP++, 0, 0, dispObj->color.r, dispObj->color.g, dispObj->color.b, dispObj->color.a); Matrix_InsertTranslation(dispObj->pos.x, dispObj->pos.y, dispObj->pos.z, MTXMODE_NEW); Matrix_Scale(dispObj->scale.x, dispObj->scale.y, dispObj->scale.z, MTXMODE_APPLY); - Matrix_InsertMatrix(&globalCtx->mf_187FC, MTXMODE_APPLY); + Matrix_InsertMatrix(&globalCtx->billboardMtxF, MTXMODE_APPLY); Matrix_InsertRotation(dispObj->rot.x, dispObj->rot.y, dispObj->rot.z, MTXMODE_APPLY); gDPLoadTextureBlock(POLY_XLU_DISP++, texture, G_IM_FMT_I, G_IM_SIZ_8b, 16, 16, 0, G_TX_NOMIRROR | G_TX_WRAP, |
