mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 19:45:35 -04:00
[rvthtool] list-banks.cpp: Another TCHAR fix.
src\rvthtool\list-banks.cpp(387,12): warning C4477: 'wprintf' : format string '%s' requires an argument of type 'wchar_t *', but variadic argument 3 has type 'const char *'
This commit is contained in:
parent
911fd8f9ab
commit
ae7ef2d241
@ -385,7 +385,7 @@ int list_banks(const TCHAR *rvth_filename)
|
|||||||
extshr = _T("SHRUNKEN: ");
|
extshr = _T("SHRUNKEN: ");
|
||||||
}
|
}
|
||||||
_tprintf(_T("RVT-H Bank Table: [%s%u bank%s]\n\n"),
|
_tprintf(_T("RVT-H Bank Table: [%s%u bank%s]\n\n"),
|
||||||
extshr, bank_count, (bank_count != 1 ? "s" : ""));
|
extshr, bank_count, (bank_count != 1 ? _T("s") : _T("")));
|
||||||
}
|
}
|
||||||
|
|
||||||
print_bank_table(rvth);
|
print_bank_table(rvth);
|
||||||
|
Loading…
Reference in New Issue
Block a user