I downloaded and extracted revision 837, opened game.vcxproj in Visual Studio 2013, updated the project for VS 2013, tried to build crimesquad, and received 11 warnings in several files and 4 warnings in shop.cpp. How can I build it properly?
Edit: The errors had to do with not1 not being defined, so I included <functional>, and now get errors in msvcrt.lib saying
"Error 12 error LNK2005: "private: __thiscall type_info::type_info(class type_info const &)" (??0type_info@@AAE@ABV0@@Z) already defined in LIBCMTD.lib(typinfo.obj) C:\Users\eric\Desktop\lcsgame-code-837-trunk\lcsgame-code-837-trunk\workspaces\msvcrt.lib(ti_inst.obj) crimesquad"
"Error 13 error LNK2005: "private: class type_info & __thiscall type_info::operator=(class type_info const &)" (??4type_info@@AAEAAV0@ABV0@@Z) already defined in LIBCMTD.lib(typinfo.obj) C:\Users\eric\Desktop\lcsgame-code-837-trunk\lcsgame-code-837-trunk\workspaces\msvcrt.lib(ti_inst.obj) crimesquad"
"Error 14 error LNK2005: _exit already defined in LIBCMTD.lib(crt0dat.obj) C:\Users\eric\Desktop\lcsgame-code-837-trunk\lcsgame-code-837-trunk\workspaces\msvcrt.lib(MSVCR120.dll) crimesquad"
"Error 15 error LNK2005: ___iob_func already defined in LIBCMTD.lib(_file.obj) C:\Users\eric\Desktop\lcsgame-code-837-trunk\lcsgame-code-837-trunk\workspaces\msvcrt.lib(MSVCR120.dll) crimesquad"
I get the feeling the issue has nothing to due with the error messages.