Remove redundant initialization

This commit is contained in:
Filip Gawin 2019-03-02 19:42:25 +01:00
commit c110ffcdaa
17 changed files with 25 additions and 25 deletions

View file

@ -147,7 +147,7 @@ void PrintDataBuffer(LogTypes::LOG_TYPE type, const u8* data, size_t size, const
GENERIC_LOG(type, LogTypes::LDEBUG, "%s", title.c_str());
for (u32 j = 0; j < size;)
{
std::string hex_line = "";
std::string hex_line;
for (int i = 0; i < 16; i++)
{
hex_line += StringFromFormat("%02x ", data[j++]);