Dorabella Posted October 26, 2025 Posted October 26, 2025 This has been happening for a while now, and it's annoying. Some INI files automatically change the settings. It had already happened even when he had activated the gamepad, while it was disabled What could be the possible causes? If this is not a Skyrim issue, please move the thread to the appropriate section. Spoiler Deactivate, while it was active
traison Posted October 26, 2025 Posted October 26, 2025 Looking at the souce code, the default value for that is true (1), and the only place it is set to false (0) is in Minimap::Hide(). Hide() is called from Controls.cpp which handles keypresses. My conclusion thus is that if the minimap was hidden when you quit the game, it will be hidden when you start the game again. bShowOnGameStart records the last state of the minimap, not what you want it to default to. The ini setting name should have been bWasVisible. This is easy to fix, if you can compile the code.
Dorabella Posted October 26, 2025 Author Posted October 26, 2025 The problem is that it turns on/off randomly , even in an area transition I tried changing the string as you suggested bShowOnGameStart with bWasVisible I will update for further developments . Thank's
traison Posted October 26, 2025 Posted October 26, 2025 8 minutes ago, Dorabella said: I tried changing the string as you suggested bShowOnGameStart with bWasVisible bWasVisible doesn't exist. I said it should be named bWasVIsible because that is less likely to be misunderstood. bShowOnGameStart can be read in 2 different ways: either it's the default value (like you interpreted it) or it's the previous state of the map (which it is). 9 minutes ago, Dorabella said: The problem is that it turns on/off randomly , even in an area transition That's a mod bug or mod conflict. I would start by disabling other UI mods. There might be something else hiding or removing the minimap swf.
Dorabella Posted October 26, 2025 Author Posted October 26, 2025 34 minutes ago, traison said: bWasVisible doesn't exist. Apparently, it seems to work.😁 Spoiler Before After
traison Posted October 26, 2025 Posted October 26, 2025 20 minutes ago, Dorabella said: Apparently, it seems to work. That's because like I said earlier, the default value is true (1). There's no way removing the value from the ini file fixed the issues you were having with it disappearing on its own.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now