Stephen Micheals wrote:
i just finished merging the new code into my mod and it compiled perfectly and then on load i get a assert in the file mempool.cpp @line 177 Assertion Failed: pBlob if i ignore the assert right after it will crash out with the same The instruction at "0x01286080" referenced memory at "0x01286080" The memory could not be "read" as yours.
If the instruction at 0x01286080 is trying to read memory at 0x01286080 (the same as the instruction address) then you have a messed up pointer somewhere (some pointer is being assigned the address of code and then trying to dereference the pointer). Perhaps you are not passing parameters to a function properly and the return address for some code is being assigned to some pointer? -- Jeffrey "botman" Broome _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

