Archive

Posts Tagged ‘color fix’

Diablo 1 strategy guides

August 8, 2011 Leave a comment

I decided to play some with Diablo 1 again. Here are some useful strategy guides:

Troubleshooting
Under Windows 7 I had some problems with Diablo 1: the colors looked strange. The fix is very simple: just kill the process explorer.exe and Diablo works fine. Here is a batch script for launching the game correctly:

@echo off
taskkill /f /im explorer.exe
diablo.exe
pause
start explorer.exe
exit