diff -r 675c52a63cb6 -r 788a9bba0889 strings.c --- a/strings.c Sun Nov 14 12:37:23 2004 +0000 +++ b/strings.c Sun Nov 14 13:07:07 2004 +0000 @@ -523,8 +523,8 @@ break; } - case 0x9D: { // {CHECKPOINT} - Checkpoint *cp = &_checkpoints[GET_DPARAM16(0)]; + case 0x9D: { // {WAYPOINT} + Waypoint *cp = &_waypoints[GET_DPARAM16(0)]; StringID str; int idx; if (~cp->town_or_string & 0xC000) { @@ -533,11 +533,11 @@ } else { idx = (cp->town_or_string >> 8) & 0x3F; if (idx == 0) { - str = STR_CHECKPOINTNAME_CITY; + str = STR_WAYPOINTNAME_CITY; } else { InjectDparam(1); SET_DPARAM16(1, idx + 1); - str = STR_CHECKPOINTNAME_CITY_SERIAL; + str = STR_WAYPOINTNAME_CITY_SERIAL; } SET_DPARAM16(0, cp->town_or_string & 0xFF); }