- 1>c:\ktrose\wibble_wibble-master\rose_engine\client\common\io_quest.cpp(83): error C2059: syntax error : ','
- 1> c:\ktrose\wibble_wibble-master\rose_engine\client\common\io_quest.cpp(200) : see reference to function template instantiation 'bool Check_QuestOP<int,short>(BYTE,dType1,dType2)' being compiled
- 1> with
- 1> [
- 1> dType1=int,
- 1> dType2=short
- 1> ]
This repeats several times with variation, but always lists line 83 in Rose_Engine/Client/Common/IO_Quest.cpp as the error.
Line 83 is:
- char *szMsg = CStr::Printf (" [QST] Comparison operations fails = = d% s% d "%, >
- (int)iLeft, szOP[ btOP ], (int)iRight );
This... looks wrong. So, I changed it a bit:
- char *szMsg = CStr::Printf (" [QST] Comparison operations fails = = d% s% %d ", (int)iLeft, szOP[ btOP ], (int)iRight );
and this compiles fine.
The project still doesn't build; it then fails at the linker stage:
- 1>Util.lib(CPacketCODEC.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in CCamera.obj
...almost builds. So close.