View Single Post
Re: what todo about game dlls who are build in debug mode
Old
  (#7)
Pierre-Marie Baty
Roi de France
 
Pierre-Marie Baty's Avatar
 
Status: Offline
Posts: 5,049
Join Date: Nov 2003
Location: 46°43'60N 0°43'0W 0.187A
Default Re: what todo about game dlls who are build in debug mode - 27-01-2004

You could do that:
Code:
char *ARandomStringTable = 
{ 
"hello", "how","are","you","doing", 
// terminator 
"\0" 
};
I think it would work

*edit* well, provided you don't forget to do "while (*ARandomStringTable)" instead too.



RACC home - Bots-United: beer, babies & bots (especially the latter)
"Learn to think by yourself, else others will do it for you."

Last edited by Pierre-Marie Baty; 27-01-2004 at 18:51..
  
Reply With Quote