diff options
| author | Carco_21 <144170194+carter-ktb21@users.noreply.github.com> | 2025-12-12 23:54:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-12 20:54:42 -0800 |
| commit | 87732304d15f80fa952a243bb3c6dec44f3f0856 (patch) | |
| tree | 60e559953b012cdeadb6e53a991e07ceab4f0f87 /src/d/d_drawlist.cpp | |
| parent | 2481e184fb99b7343cbf0893f838cc892feafc4a (diff) | |
d_particle debug work (#2944)
* misc work
* more work
* fixed error
* more work
* PR cleanup
* missed cleanup
* error fix
* wii fix
Diffstat (limited to 'src/d/d_drawlist.cpp')
| -rw-r--r-- | src/d/d_drawlist.cpp | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/src/d/d_drawlist.cpp b/src/d/d_drawlist.cpp index 7a64286c75..6d90b08181 100644 --- a/src/d/d_drawlist.cpp +++ b/src/d/d_drawlist.cpp @@ -13,32 +13,6 @@ #include "m_Do/m_Do_lib.h" #include "m_Do/m_Do_mtx.h" -class dDlst_blo_c : public dDlst_base_c { -public: - virtual void draw(); - bool create(JKRArchive* param_1, char* param_2) { - return mScreen.setPriority(param_2,0x20000,param_1) != 0; - } - - J2DPane* getPane(u64 i_tag) { - return mScreen.search(i_tag); - } - - J2DPicture* getPicture(u64 i_tag) { - J2DPane* pane = getPane(i_tag); - JUT_ASSERT(1553, pane != NULL); - if (pane->getTypeID() != 0x12) { - return NULL; - } - return (J2DPicture*)pane; - } - - /* 0x004 */ int field_0x4; - /* 0x008 */ J2DScreen mScreen; - /* 0x120 */ f32 field_0x120; - /* 0x124 */ f32 field_0x124; -}; - class dDlst_2Dm_c { public: virtual void draw(); @@ -896,7 +870,7 @@ void dDlst_2D_c::draw() { } void dDlst_blo_c::draw() { - mScreen.draw(field_0x120, field_0x124, dComIfGp_getCurrentGrafPort()); + mScreen.draw(anm.field_0x4, anm.field_0x8, dComIfGp_getCurrentGrafPort()); } // stand-in for a function that pulls in a bunch of inline functions but was presumably stripped |
