Skip to content

Commit

Permalink
Fixing symbol names so the visual studio debugger can deal with it
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingrater committed Feb 9, 2013
1 parent ba16b32 commit 522f6db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/backend/cgcv.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ int cv_namestring(unsigned char *p,const char *name)
if (config.fulltypes == CV8)
{
memcpy(p, name, len + 1);
#if 1
for(int i = 0; i < len; i++)
if(p[i] == '.')
p[i] = '@';
#endif
return len + 1;
}
if (len > 255)
Expand Down

0 comments on commit 522f6db

Please sign in to comment.