Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to "verify" your details, 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.
Entire forum
➜ SMAUG
➜ Compiling the server
➜ Compilation error
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Jokerjfu
(19 posts) Bio
|
Date
| Wed 04 Jul 2001 10:28 PM (UTC) |
Message
| I had mad some changes to act_comm.c and fight.c so I really don't think that had to do with this error. As it was compiling it got to act_wiz.c and said the following:
c:\windows\desktop\smaug1.4a.sce\act_wiz.c(3430) : error C2196: case value '500' already used
not sure what that is.
Later | Top |
|
Posted by
| Nick Gammon
Australia (23,052 posts) Bio
Forum Administrator |
Date
| Reply #1 on Thu 05 Jul 2001 12:37 AM (UTC) |
Message
| The error message gives you a clue. Look at line 3430.
You get this error if you do something like this:
switch (i)
{
case 500: break;
case 500: break;
} /* end of switch */
In this example you have used "case 500" twice.
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | 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.
9,618 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top