clear some c++ warnings.

This commit is contained in:
2011-03-27 07:56:29 +00:00
parent 587bbc4213
commit b11f29c8ac
4 changed files with 7 additions and 8 deletions

View File

@@ -1919,10 +1919,10 @@ static void restorePySysObjects(void)
// Copied from bpy_interface.c
static struct _inittab bge_internal_modules[]= {
{"mathutils", BPyInit_mathutils},
{"bgl", BPyInit_bgl},
{"blf", BPyInit_blf},
{"aud", AUD_initPython},
{(char *)"mathutils", BPyInit_mathutils},
{(char *)"bgl", BPyInit_bgl},
{(char *)"blf", BPyInit_blf},
{(char *)"aud", AUD_initPython},
{NULL, NULL}
};