Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ Programming
➜ General
➜ Values not stickin
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Trom
(82 posts) Bio
|
Date
| Thu 05 Jan 2006 09:43 PM (UTC) |
Message
| The problem is that i'm sending my char_data to a function that modifies the pc_data, the modifications don't carry through when the function is done doing the changes. The below is pseudo code to represent what is going on.
Note: i am using a 2d array to store the values in pcdata.
void somefunction( CH_DATA *ch ) {
ch->pcdata->value[0][0] = 1;
return;
}
ch->pcdata->value[0][0] = 0;
somefunction(ch);
printf("PcdataValue00: %d",ch->pcdata->value[0][0]);
// it would print "PcdataValue00: 0"
I'm going to work on it a bit more to see if anything new comes up but if you have any ideas, it would be appreciated.
| Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
7,135 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top