The name should be const.

This commit is contained in:
riccardom 2008-12-30 15:35:57 +00:00
parent ecd509166f
commit 9e8f19ebf9
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
typedef struct Render3DInterface
{
// The name of the plugin, this name will appear in the plugins list
char * name;
const char * name;
//called once when the plugin starts up
char (CALL_CONVENTION* NDS_3D_Init) (void);
@ -69,4 +69,4 @@ void NDS_3D_SetDriver (int core3DIndex);
void NDS_3D_ChangeCore(int newCore);
#endif