Compare commits

...

2 Commits

Author SHA1 Message Date
1c7c020252 Updated changelog 2026-08-23 05:16:54 +02:00
cd2e2ed2d9 Prevent starting with conflicting Widescreen Scale Removed 2026-08-23 05:15:55 +02:00
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Beware, spoilers ahead!
2.1.4.3 (TBD)
- Added compatibility with Skyrim SE 1.7.99.
- Added Czech localization by Dogzey.
- Added widescreen support.
- Added SkyUI 6.0 support.

View File

@ -96,6 +96,12 @@ namespace {
exit(EXIT_FAILURE);
}
}
if (g_settings.at("MenuAspectRatioFix")) {
if (const auto pluginInfo = GetLoadInterface()->GetPluginInfo("WidescreenScaleRemoved"); pluginInfo) {
MessageBoxW(NULL, L"Widescreen Scale Removed is already included in Enderal, please, disable it (remove file Data\\SKSE\\Plugins\\WidescreenScaleRemoved.dll).", L"Enderal SE Error", MB_OK | MB_ICONERROR);
exit(EXIT_FAILURE);
}
}
if (g_settings.at("MapMarkerPlacementFixes")) {
logger::info("Initializing map market placement fixes...");
MapMarkerPlacement::Install();