Changed: Minor changes
--HG-- branch : develop
This commit is contained in:
parent
d099e98dae
commit
93c2f55290
3 changed files with 7 additions and 6 deletions
|
@ -894,8 +894,8 @@ bool launchProgram(const std::string &programName, const std::string &arguments,
|
|||
|
||||
int status = vfork ();
|
||||
/////////////////////////////////////////////////////////
|
||||
/// WARNING : NO MORE INSTRUCTION AFTER VFORK !
|
||||
/// READ VFORK manual
|
||||
// WARNING : NO MORE INSTRUCTION AFTER VFORK !
|
||||
// READ VFORK manual
|
||||
/////////////////////////////////////////////////////////
|
||||
if (status == -1)
|
||||
{
|
||||
|
@ -1000,8 +1000,8 @@ bool launchProgramArray (const std::string &programName, const std::vector<std::
|
|||
|
||||
int status = vfork ();
|
||||
/////////////////////////////////////////////////////////
|
||||
/// WARNING : NO MORE INSTRUCTION AFTER VFORK !
|
||||
/// READ VFORK manual
|
||||
// WARNING : NO MORE INSTRUCTION AFTER VFORK !
|
||||
// READ VFORK manual
|
||||
/////////////////////////////////////////////////////////
|
||||
if (status == -1)
|
||||
{
|
||||
|
|
|
@ -423,6 +423,7 @@ public:
|
|||
void tp(const NLMISC::CVectorD &dest);
|
||||
/// Teleport the player to correct his position.
|
||||
void correctPos(const NLMISC::CVectorD &dest);
|
||||
|
||||
/// Skill Up
|
||||
void skillUp();
|
||||
/// get the level of the player (max of all skills)
|
||||
|
|
Loading…
Reference in a new issue