--- deliantra/server/common/button.C 2006/09/14 22:33:58 1.10 +++ deliantra/server/common/button.C 2006/09/16 22:24:12 1.11 @@ -189,7 +189,7 @@ * */ void -activate_connection (mapstruct *map, long connection, bool state) +activate_connection (maptile *map, long connection, bool state) { if (INVOKE_MAP (TRIGGER, map, ARG_INT64 (connection), ARG_INT (state))) return; @@ -283,7 +283,7 @@ */ void -update_buttons (mapstruct *m) +update_buttons (maptile *m) { objectlink *ol; oblinkpt *obp; @@ -597,7 +597,7 @@ } void -add_button_link (object *button, mapstruct *map, int connected) +add_button_link (object *button, maptile *map, int connected) { oblinkpt *obp; objectlink *ol = get_objectlink (); @@ -677,7 +677,7 @@ * Gets the objectlink for this connection from the map. */ oblinkpt * -get_connection_links (mapstruct *map, long connection) +get_connection_links (maptile *map, long connection) { for (oblinkpt * obp = map->buttons; obp; obp = obp->next) if (obp->value == connection) @@ -873,7 +873,7 @@ * matches what the object has. */ void -verify_button_links (const mapstruct *map) +verify_button_links (const maptile *map) { oblinkpt *obp; objectlink *ol;