MathewWi / dop-mii

Automatically exported from code.google.com/p/dop-mii
GNU General Public License v3.0
0 stars 0 forks source link

Installing WAD from SD doesn't work #63

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

Attachments:

GoogleCodeExporter commented 9 years ago
Thanks a lot :) This is in the SVN now.

Original comment by castleva...@yahoo.com on 23 Nov 2010 at 6:02