Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gcc/MSVC compiler warnings #7686

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 3rdParty/libzt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ foreach(
lwip_obj
miniupnpc_obj
zto_pic
zt_pic
natpmp_pic
lwip_pic
miniupnpc_pic
Expand Down
2 changes: 1 addition & 1 deletion Source/engine/path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ int ReconstructPath(const ExploredNodes &explored, PointT dest, int8_t *path, si
}
std::reverse(path, path + len);
std::fill(path + len, path + maxPathLength, -1);
return len;
return static_cast<int>(len);
}

} // namespace
Expand Down
1 change: 0 additions & 1 deletion Source/items.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4271,7 +4271,6 @@ void UseItem(Player &player, item_misc_id mid, SpellID spellID, int spellFrom)
if (ControlMode == ControlTypes::KeyboardAndMouse && GetSpellData(spellID).isTargeted()) {
prepareSpellID = spellID;
} else {
const int spellLevel = player.GetSpellLevel(spellID);
// Find a valid target for the spell because tile coords
// will be validated when processing the network message
Point target = cursPosition;
Expand Down
Loading