What steps will reproduce the problem?
1. Select installing WAD from SD
2. Press A
What is the expected output? What do you see instead?
The file get's installed from WAD
Please provide any additional information below.
The WAD from SD option doesn't work because of a bug in the Title.cpp file,
line 578 as I already mentioned in issue 60.
Line 578 is
if (selection > 0 && selection < 3) return Get(revision, wadFileName, selection)
but should be
if (selection >= 0 && selection < 3) return Get(revision, wadFileName,
selection)
since the value of WAD from SD is 0. See attached patch.
Original issue reported on code.google.com by baka0815...@gmail.com on 23 Nov 2010 at 5:29
Original issue reported on code.google.com by
baka0815...@gmail.com
on 23 Nov 2010 at 5:29Attachments: