diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-07-17 21:41:40 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-07-17 21:41:40 -0400 |
| commit | 67259edeeb2a48dffa0767c30ed0ba2ee2b00846 (patch) | |
| tree | 1890273ea8d95742a1499cf9302b4bd78ce8ea49 /src/d/d_kankyo.cpp | |
| parent | ce8a70bfb0d3cc67f1db747909d795b2280a35e1 (diff) | |
Clean up HIO reg accesses
Diffstat (limited to 'src/d/d_kankyo.cpp')
| -rw-r--r-- | src/d/d_kankyo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_kankyo.cpp b/src/d/d_kankyo.cpp index 03e26305..48ba1a0f 100644 --- a/src/d/d_kankyo.cpp +++ b/src/d/d_kankyo.cpp @@ -350,11 +350,11 @@ void envcolor_init() { stage_vrbox_info_class* vrbox = dComIfGp_getStageVrboxInfo(); for (int i = 0; i < 20; i++) { - g_regHIO.mChild[3].mFloatRegs[i] = 0.0f; + REG3_F(i) = 0.0f; } for (int i = 0; i < 10; i++) { - g_regHIO.mChild[3].mShortRegs[i] = 0; + REG3_S(i) = 0; } #if VERSION > VERSION_DEMO |
