Browse Source

Fix starting a game

pull/1019/head
Anders Jenbo 5 years ago committed by GitHub
parent
commit
e3d85b9dfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Source/diablo.cpp

2
Source/diablo.cpp

@ -1595,7 +1595,7 @@ void LoadGameLevel(BOOL firstflag, int lvldir)
InitQuestText();
int players = gbIsMultiplayer ? MAX_PLRS : 1;
for (i = 1; i < players; i++)
for (i = 0; i < players; i++)
InitPlrGFXMem(i);
InitStores();

Loading…
Cancel
Save