Merge pull request #658 from bulldozerecske/patch-2
Some checks failed
CodeQL / Analyze (push) Waiting to run
Build branch / build-all (push) Failing after 17s

Create Frequently Asked Questions (FAQ)
This commit is contained in:
smallmodel 2025-01-30 21:18:39 +01:00 committed by GitHub
commit 77f0ce0673
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 46 additions and 0 deletions

View file

@ -18,6 +18,8 @@ The main goal of OpenMoHAA is to ensure the future and continuity of **Medal of
- [Running OpenMoHAA and using expansion assets](docs/getting_started_running.md)
- [Dedicated server configuration](docs/configuration/server.md)
If you encounter any issues, please refer to the [FAQ](docs/faq.md) for possible solutions.
## Current state
### Single-player

44
docs/faq.md Normal file
View file

@ -0,0 +1,44 @@
# Frequently Asked Questions
## 1. My OpenMoHAA client has crashed, leaving the desktop brightened up. How can I fix this without restarting the computer?
### 1.1 Lock and Unlock Your Screen (Windows+L)
Simply pressing **Win+L** to lock your screen and then logging back in can sometimes reset the brightness to its previous state.
### 1.2. Command Line Fix (Windows)
If you have an **NVIDIA** or **AMD** GPU, you can try these commands:
- **For NVIDIA GPUs:**
Open **Command Prompt (cmd.exe)** or **PowerShell** and run:
```powershell
nvidia-settings -a "DPY-0/RedBrightness=0.0" -a "DPY-0/GreenBrightness=0.0" -a "DPY-0/BlueBrightness=0.0"
```
(If you have multiple displays, `DPY-0` may need to be replaced with the correct display identifier.)
- **For AMD GPUs:**
Open the **AMD Radeon Software** and manually adjust brightness or SDR settings to reset them.
### 1.3. Use a Third-Party Tool to Reset Gamma & Brightness
Programs like **Gamma Panel** or **f.lux** can help restore modified brightness and gamma settings quickly.
### 1.4. Restart the Graphics Driver (Windows)
Press **Win + Ctrl + Shift + B** to restart the graphics driver without rebooting your PC. Your screen will briefly go black, then reset.
### 1.5. Reset Gamma via Xrandr (Linux, Xorg Users)
If youre using Linux with Xorg, try this command to reset gamma settings:
```bash
xrandr --output eDP-1 --gamma 1:1:1
```
(Replace `eDP-1` with the correct display name, which you can find by running `xrandr` in the terminal.)
### 1.6. Changing Display Mode in Windows (Alternative)
If none of the above solutions work, you can manually reset brightness by changing the display mode:
1. Right-click on your desktop and select **Display settings**.
2. Scroll down to **Display resolution** and change it to a different setting.
3. Revert it back to your original resolution.
This forces Windows to refresh display settings, which may restore brightness.