Merge branch 'main' into unhackify-widescreen

# Conflicts:
#	src/dusk/imgui/ImGuiMenuGame.cpp
#	src/m_Do/m_Do_lib.cpp
This commit is contained in:
Luke Street
2026-04-18 14:12:21 -06:00
16 changed files with 395 additions and 143 deletions
+6
View File
@@ -113,6 +113,12 @@ void mDoLib_project(Vec* src, Vec* dst) {
}
dst->x = ((0.5f + (multVec.x * calcFloat)) * xSize) + xOffset;
#if TARGET_PC
if (dusk::getSettings().game.enableMirrorMode) {
dst->x = ((0.5f + (-multVec.x * calcFloat)) * xSize) + xOffset;
}
#endif
dst->y = ((0.5f + (multVec.y * (-calcFloat))) * ySize) + yOffset;
}