From 5bde4c6439f6c970a00a18b27053c993dddbb695 Mon Sep 17 00:00:00 2001 From: Brambor Date: Mon, 2 Sep 2024 14:15:48 +0200 Subject: [PATCH] fix GitHub errors: unused & 'point' from named constant --- src/npctalk_funcs.cpp | 5 +++-- src/overmap_ui.cpp | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/npctalk_funcs.cpp b/src/npctalk_funcs.cpp index 63be4fefee61e..07ca718c7ea0e 100644 --- a/src/npctalk_funcs.cpp +++ b/src/npctalk_funcs.cpp @@ -1285,8 +1285,9 @@ void talk_function::distribute_food_auto( npc &p ) zone_manager &mgr = zone_manager::get_manager(); const tripoint_abs_ms &npc_abs_loc = p.get_location(); // 3x3 square with NPC in the center, includes NPC's tile and all adjacent ones, for overflow - const tripoint top_left = npc_abs_loc.raw() + point{-1, -1}; // Awful hack, zones want the raw value - const tripoint bottom_right = npc_abs_loc.raw() + point{1, 1}; // Awful hack, zones want the raw value + // TODO: fix point types; Awful hack, zones want the raw value + const tripoint top_left = npc_abs_loc.raw() + point_north_west; + const tripoint bottom_right = npc_abs_loc.raw() + point_south_east; std::string zone_name = "ERROR IF YOU SEE THIS (dummy zone talk_function::distribute_food_auto)"; const faction_id &fac_id = p.get_fac_id(); mgr.add( zone_name, zone_type_CAMP_FOOD, fac_id, false, true, top_left, bottom_right ); diff --git a/src/overmap_ui.cpp b/src/overmap_ui.cpp index fa559441acd7b..b2db203c26390 100644 --- a/src/overmap_ui.cpp +++ b/src/overmap_ui.cpp @@ -73,7 +73,6 @@ class character_id; -static const activity_id ACT_AUTODRIVE( "ACT_AUTODRIVE" ); static const activity_id ACT_TRAVELLING( "ACT_TRAVELLING" ); static const mongroup_id GROUP_FOREST( "GROUP_FOREST" );