Skip to content

Releases: Albeoris/Memoria.FrontMission2

Stuck in Main Menu Fix (Skip resolution initialization)

13 Apr 00:33
Compare
Choose a tag to compare

WARNING

The fix is only suitable for Demo version 1.0.0. Don't try to use it on later updates.

Description

The fix removes the attempt to set an unsupported screen resolution in the settings drop-down menu. Relevant for wide monitors and monitors with non-standard aspect ratios.

Installation

Extract Assembly-CSharp.zip to \steamapps\common\FRONT MISSION 2 Remake Demo\Front Mission 2 Remake Demo_Data\Managed and replace existing Assembly-CSharp.dll.

Under hood

namespace Options
{
	public class ResolutionOption
        {
		protected override void InitValues()
		{
...
// before:		this.currentIndex = ... this._options.First(...
// after		this.currentIndex = ... this._options.FirstOrDefault(...
...
		}
        }