Page 1 of 1

ASCII and Unicode

PostPosted: Jun 13, 2003 @ 1:34am
by CpuWhiz105
Ok, I want to share game data between the PC and PPC. Should I store it as just a char and convert it before passing it to GapiDraw, taking cpu power; or should I store it as a unicode TCHAR and take up twice as much space for game data and memory?

PostPosted: Jun 13, 2003 @ 1:42am
by DillRye
I would have to say either way is negligible. Using TCHARs would probably make more sense though I often use chars out of habbit and convert them with the TEXT() macro.

PostPosted: Jun 13, 2003 @ 3:01am
by ppcStudios

PostPosted: Jun 13, 2003 @ 4:49am
by CpuWhiz105

PostPosted: Jun 13, 2003 @ 5:13am
by ppcStudios

PostPosted: Jun 13, 2003 @ 6:37am
by CpuWhiz105

PostPosted: Jun 13, 2003 @ 11:59am
by ppcStudios

PostPosted: Jun 13, 2003 @ 9:29pm
by CpuWhiz105