Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I was trying to play X-btf above Full HD resolution (4k). Due to the circurmstand, the above resolutions are greyed out, I tried to find a way to work with the entries of the registry. In Windows 11 you'll find them here: HKEY_CURRENT_USER\Software\EGOSOFT\X. The SYSVIDEOMODE sets the resolution and the color depth (16 or 32 bits).
Unfortunately the result was, that resolutions like 2560x1600 or 3840x2160 are not working, you'll get an error when you start the game.
Nevertheless I'd like to share my result with you:
To set the resolution via registry, you have to convert your width and height from decimal to hexadecimal and write each number in reverse order into the registry.
Example:
Resolution 1920x1200
1920 (dec) - 780 (hex)
1200 (dec) - 4B0 (hex)
Reversed:
780 - 80 07
4B0 - B0 04
Registry:
80 07 B0 04 (for 1920x1200)
Other resolutions:
2560x1600 / A00 640 / 00 0A 40 06 (not working)
1920x1200 / 780 4B0 / 80 07 B0 04
1680x1050 / 690 41A / 90 06 1A 04
1440x900 / 5A0 384 / A0 05 84 03
3840x2160 / F00 870 / 00 0F 70 08 (not working)
1920x1080 / 780 438 / 80 07 38 04
1600x900 / 640 384 / 40 06 84 03
1366x768 / 556 300 / 56 05 00 03
Kind regards ...
okay, how do i do this ?