Skip to content

Commit

Permalink
Fixed bad cast in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Friendly0Fire committed Sep 11, 2023
1 parent d4e9988 commit 44c0344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GW2Clarity/src/Grids.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ void Grids::Load() {
if(!i.buff) {
i.buff = &Buffs::UnknownBuff;
LogWarn("Configuration has unknown buff: Grid '{}', location ({}, {}), buff ID '{}'.", g.name, i.pos.x, i.pos.y,
static_cast<std::string>(iIn["buff_id"]));
static_cast<i32>(iIn["buff_id"]));
}

if(!i.buff && !i.additionalBuffs.empty()) {
Expand Down

0 comments on commit 44c0344

Please sign in to comment.