Skip to content

Commit

Permalink
Fixed MinGW compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed May 31, 2024
1 parent 056f55f commit 411df7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Emulator/Misc/RetroShell/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,11 @@ Interpreter::help(const Command& current)
usage(current);

// Determine tabular positions to align the output
usize tab = 0;
isize tab = 0;
for (auto &it : current.subCommands) {
tab = std::max(tab, it.fullName.length());
tab = std::max(tab, (isize)it.fullName.length());
}
tab += indent.size();
tab += (isize)indent.size();

isize group = -1;

Expand Down

0 comments on commit 411df7e

Please sign in to comment.