The previous MenuCursor detour hooks crashed at startup with 'REL/Trampoline.cpp: Failed to handle allocation request' because the plugin never allocated F4SE trampoline memory. Replaced detours with a MainMenu::AdvanceMovie vtable hook (which requires no trampoline) that re-expands cursor bounds immediately after vanilla title-screen parallax runs. Added UIAdvanceMenusFunctionCompleteEvent sink as additional safety net. Changed main menu disableFocusMenu to true to avoid fighting vanilla cursor/parallax state.
28 lines
797 B
HTML
28 lines
797 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Commonwealth Online — Main Menu Shell</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<style>
|
|
/* Shell-only: left panel is layout chrome with no logo or menu content */
|
|
.left-panel--shell {
|
|
pointer-events: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="main-screen" id="mainScreen">
|
|
<!-- Title-screen scenic background -->
|
|
<div class="scene-layer" aria-hidden="true"></div>
|
|
<div class="scene-overlay" aria-hidden="true"></div>
|
|
|
|
<!-- CRT / HUD texture overlays -->
|
|
<div class="screen-effects" aria-hidden="true"></div>
|
|
|
|
<!-- Left panel chrome (no logo, no menu items) -->
|
|
<aside class="left-panel left-panel--shell" aria-hidden="true"></aside>
|
|
</div>
|
|
</body>
|
|
</html>
|