Home AMX User Forum NetLinx Studio

Local Variables & Watch Window

Hi all...

In a program, I have declared three local variables in this way
BUTTON_EVENT[DISCSELECT]
{
  PUSH:
  {
    LOCAL_VAR CHAR HRS CHAR MINS CHAR SECS
    //Some statments and math calcs
    WATCHMINS = MINS
  }
}

Now , in the watch window i can see HRS value but MINS and SECS ... NO! :(
Add for this i can see WATCHMINS which is a char global variable, and has the value of MINS... The code is working fine, but I wanna know why I can't see these two vars??

Comments

Sign In or Register to comment.