Skip to content

Commit

Permalink
Correct default LightEnable values for state map
Browse files Browse the repository at this point in the history
  • Loading branch information
lvengesanam committed Sep 24, 2024
1 parent 97caca2 commit d6b698e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/d3d9_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3727,7 +3727,7 @@ HRESULT Direct3DDevice9Ex_LSS<EnableSync>::ResetState() {

// Reset Light States
for (uint32_t i = 0; i < caps::MaxEnabledLights; ++i) {
m_state.bLightEnables[i] = 1;
m_state.bLightEnables[i] = 0;
}

// Reset Stream Frequency
Expand Down

0 comments on commit d6b698e

Please sign in to comment.