dome
Open WL_MENU.C and go to line 78,
u should see this :
#else
{1,STR_NG,NewGame},
{1,STR_SD,Sound},
{1,STR_CL,Contol},
{1,STR_LG,LoadGame},
{0,STR_SG,SaveGame},
{1,STR_CV,ChangeView},
Now see the "STR_NG"(No quotes!!!) change that to (for instance):
{1,"Start New Game",NewGame},//quotes that time!
To change the "View Scores, Back To Demo, and Quit"(No Quotes!)
go to line 97, u should see this:
{1,STR_VS,ViewScores},
{1,STR_BD,0},
{1,STR_QT,0},
Now: Again do the same:
{1,"Exit",0},
Code Editing Tutorials
Changing the menu names
Changing the menu names
Open WL_MENU.C and go to line 78,
u should see this :
#else
{1,STR_NG,NewGame},
{1,STR_SD,Sound},
{1,STR_CL,Contol},
{1,STR_LG,LoadGame},
{0,STR_SG,SaveGame},
{1,STR_CV,ChangeView},
Now see the "STR_NG"(No quotes!!!) change that to (for instance):
{1,"Start New Game",NewGame},//quotes that time!
To change the "View Scores, Back To Demo, and Quit"(No Quotes!)
go to line 97, u should see this:
{1,STR_VS,ViewScores},
{1,STR_BD,0},
{1,STR_QT,0},
Now: Again do the same:
{1,"Exit",0},