diff options
author | Simon Howard | 2013-08-17 21:08:31 +0000 |
---|---|---|
committer | Simon Howard | 2013-08-17 21:08:31 +0000 |
commit | 1e0abaad4f8249eab598ce69f8f8c2fa261d7733 (patch) | |
tree | ea24c8a3d20c965e0e76dea4f431474c0105f95a | |
parent | 0a94c0f99d6c34b30d2ac6fd7d5e516bd14dffb5 (diff) | |
download | chocolate-doom-1e0abaad4f8249eab598ce69f8f8c2fa261d7733.tar.gz chocolate-doom-1e0abaad4f8249eab598ce69f8f8c2fa261d7733.tar.bz2 chocolate-doom-1e0abaad4f8249eab598ce69f8f8c2fa261d7733.zip |
Fix IWAD auto-selection when joining a game in the setup tool (thanks
Alexandre Xavier).
Subversion-branch: /branches/v2-branch
Subversion-revision: 2619
-rw-r--r-- | src/setup/multiplayer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/setup/multiplayer.c b/src/setup/multiplayer.c index eac9d550..d4235f87 100644 --- a/src/setup/multiplayer.c +++ b/src/setup/multiplayer.c @@ -833,6 +833,7 @@ static void SelectQueryAddress(TXT_UNCAST_ARG(button), && found_iwads[i]->mission == querydata->gamemission) { found_iwad_selected = i; + iwadfile = found_iwads[i]->name; break; } } |