diff options
| author | robojumper <robojumper@gmail.com> | 2025-06-09 12:58:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-09 12:58:56 +0200 |
| commit | 810f61fe94a44ede6ed18027eb6bdda429d7d91a (patch) | |
| tree | eaa99f84fd00a863bcecc03260b5a265591879f1 /src/egg/gfx/eggDrawPathDOF.cpp | |
| parent | a652469812b1ba1e9523b1005ed20b8c437a81fe (diff) | |
| parent | 52956177d95512198a5f52912c66c10985fe061f (diff) | |
Merge pull request #204 from robojumper/egg-symbols-2025-06-09
Import a few new EGG symbols from NSMBW
Diffstat (limited to 'src/egg/gfx/eggDrawPathDOF.cpp')
| -rw-r--r-- | src/egg/gfx/eggDrawPathDOF.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/egg/gfx/eggDrawPathDOF.cpp b/src/egg/gfx/eggDrawPathDOF.cpp index b51b64cd..e649fab5 100644 --- a/src/egg/gfx/eggDrawPathDOF.cpp +++ b/src/egg/gfx/eggDrawPathDOF.cpp @@ -123,9 +123,9 @@ void DrawPathDOF::internalDraw(u16 idx) { } if (field_0x20 == 2) { - internalDrawVariant2(idx); + internalDrawLite(idx); } else { - internalDrawVariant01(idx); + internalDrawStandard(idx); } switch (idx) { @@ -141,9 +141,9 @@ void DrawPathDOF::internalDraw(u16 idx) { } } -void DrawPathDOF::internalDrawVariant01(u16 idx) {} +void DrawPathDOF::internalDrawStandard(u16 idx) {} -void DrawPathDOF::internalDrawVariant2(u16 idx) { +void DrawPathDOF::internalDrawLite(u16 idx) { const Screen &screen = GlobalDrawState::getScreen(); const Screen::DataEfb &efb = screen.GetDataEfb(); switch (idx) { |
