Skip to content

Commit

Permalink
Fix LOD Grade on Honkai Game Settings gives a wrong value on Low
Browse files Browse the repository at this point in the history
This was supposedly 3 Low (as per enum from 6.4's UserAssembly.dll). Idk why miHoYo did this but they fixed this in 6.5 and we didn't notice this change.
  • Loading branch information
neon-nyan committed Apr 16, 2023
1 parent 25ab279 commit 16ad4c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ internal enum SelectVolumetricLight : int { Low, Medium, High }
internal enum SelectPostFXGrade : int { Low, High }

/// <summary>
/// This selection has 3 name types: Low (3), Medium (1), High (0)<br/>
/// This selection has 3 name types: Low (2), Medium (1), High (0)<br/>
/// </summary>
internal enum SelectLodGrade : int { Low = 3, Medium = 1, High = 0 }
internal enum SelectLodGrade : int { Low = 2, Medium = 1, High = 0 }
}

0 comments on commit 16ad4c2

Please sign in to comment.