unsigned char -> char for serialization data structures.

See Issue 604
This commit is contained in:
erwin.coumans
2012-03-05 23:38:36 +00:00
parent b5b31ce52b
commit 28de5ea030
4 changed files with 9 additions and 8 deletions

View File

@@ -304,6 +304,7 @@ void DemoApplication::reshape(int w, int h)
}
void DemoApplication::keyboardCallback(unsigned char key, int x, int y)
{
(void)x;

View File

@@ -26,17 +26,17 @@ subject to the following restrictions:
// 32 && 64 bit versions
#ifdef BT_INTERNAL_UPDATE_SERIALIZATION_STRUCTURES
#ifdef _WIN64
extern unsigned char sBulletDNAstr64[];
extern char sBulletDNAstr64[];
extern int sBulletDNAlen64;
#else
extern unsigned char sBulletDNAstr[];
extern char sBulletDNAstr[];
extern int sBulletDNAlen;
#endif //_WIN64
#else//BT_INTERNAL_UPDATE_SERIALIZATION_STRUCTURES
extern unsigned char sBulletDNAstr64[];
extern char sBulletDNAstr64[];
extern int sBulletDNAlen64;
extern unsigned char sBulletDNAstr[];
extern char sBulletDNAstr[];
extern int sBulletDNAlen;
#endif //BT_INTERNAL_UPDATE_SERIALIZATION_STRUCTURES

View File

@@ -1,4 +1,4 @@
unsigned char sBulletDNAstr[]= {
char sBulletDNAstr[]= {
83,68,78,65,78,65,77,69,44,1,0,0,109,95,115,105,122,101,0,109,
95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95,
99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111,
@@ -419,7 +419,7 @@ unsigned char sBulletDNAstr[]= {
};
int sBulletDNAlen= sizeof(sBulletDNAstr);
unsigned char sBulletDNAstr64[]= {
char sBulletDNAstr64[]= {
83,68,78,65,78,65,77,69,44,1,0,0,109,95,115,105,122,101,0,109,
95,99,97,112,97,99,105,116,121,0,42,109,95,100,97,116,97,0,109,95,
99,111,108,108,105,115,105,111,110,83,104,97,112,101,115,0,109,95,99,111,

View File

@@ -28,9 +28,9 @@ subject to the following restrictions:
///only the 32bit versions for now
extern unsigned char sBulletDNAstr[];
extern char sBulletDNAstr[];
extern int sBulletDNAlen;
extern unsigned char sBulletDNAstr64[];
extern char sBulletDNAstr64[];
extern int sBulletDNAlen64;
SIMD_FORCE_INLINE int btStrLen(const char* str)