DRAGONS: Fix compiler warning

This commit is contained in:
jepael 2020-02-26 11:03:48 +02:00 committed by Eugene Sandulenko
parent fffb25a47a
commit 5071d86a28

View File

@ -87,7 +87,7 @@ void Properties::save(uint numberToWrite, Common::WriteStream *out) {
void Properties::print(char *prefix) {
char *str = new char[_count + 1];
int i = 0;
uint i = 0;
for (; i < _count; i++) {
str[i] = get(i) ? '1' : '0';
}