Hi,
I've been trying to compile&debug directly from VS2010. I've been able successfully compile and run it, but it required to make some small changes to source code - all of them related to non C compliant variable declaration.
cmd5.c (l:420) has declared 3 variables after if statement. moving them to begining of scope solves the problem.
store.c (l:2425) contains int old_number variable declared inline, moving it to begining of function together with other variables solves the problem.
The source code is taken from download unangband-064a-src.zip
Regards
I've been trying to compile&debug directly from VS2010. I've been able successfully compile and run it, but it required to make some small changes to source code - all of them related to non C compliant variable declaration.
cmd5.c (l:420) has declared 3 variables after if statement. moving them to begining of scope solves the problem.
store.c (l:2425) contains int old_number variable declared inline, moving it to begining of function together with other variables solves the problem.
The source code is taken from download unangband-064a-src.zip
Regards
Comment