Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Glossary:DirectX/DirectDraw troubleshooting

From PCGamingWiki, the wiki about fixing PC games
< Glossary:DirectX
Revision as of 09:17, 8 April 2015 by Garrbot (talk | contribs) (misc. fixes)
This page may require cleanup to meet basic quality standards. You can help by modifying the article. The discussion page may contain useful suggestions.

Key points

Windows XP, Vista and 7 have compatibility issues with DirectDraw games using 256 color depth resulting in incorrect colors.
This color issue does not occur on Windows 8 and later; the steps below only apply to earlier versions.

Cause

This issue appears to be caused by Explorer.exe resetting the system palette, essentially overwriting the palette defined by the game (hence the rainbow colors). This is evidenced by how taking a screenshot of an affected game will show just the discoloration with black where the other game assets would be rendered and by the fix itself.

A more technical explanation: These games rely on DirectDraw, an API in DirectX which was used to render graphics which is now deprecated. More specifically, they used an exclusive palette, where they set the system palette (the colors the system can use, back when there were only 256 colors) to the palette the game wants to use. However, some applications try to set their own exclusive palette, causing conflicting colors since the game's exclusive palette is no longer actually exclusive and is set to the wrong colors. In newer versions of Windows, CSRSS and the desktop window (explorer.exe) set their own palette, which causes the odd colors.[1]

Fixes

w7ddpatcher

w7ddpatcher is the simplest and best method.

PalettestealerSuspender

PalettestealerSuspender prevents palette issues using a different method.[2]

Kill Explorer

The fix can be scripted with a BAT file which will kill Explorer.exe, run the game in question, and then restart Explorer.exe once you have exited the game.[3]

 REM -[ScriptName].bat
 taskkill /F /IM Explorer.exe
 [Path to game executable]
 start explorer.exe

You can place the BAT file on the desktop for some games, but others require that it be in the same folder as the EXE. In those cases, only use the executable name in place of the entire path and create a shortcut on your desktop to the executable.

DxWnd DirectDraw emulation

DxWnd was originally created to enable old DirectX games to run in a window. Nowadays it provides far more features: It can fix the odd rainbow color issue, enable time stretching, and you can decide between running the game in a window or in full screen.

See also


References