From 58407e4ac3276db17bb15abdff525ee19448e9eb Mon Sep 17 00:00:00 2001
From: Matthew Budd <mjbudd77@gmail.com>
Date: Wed, 28 Oct 2020 20:39:53 -0400
Subject: [PATCH] Removed old comment block from Qt Trace logger.

---
 src/drivers/Qt/TraceLogger.cpp | 45 ----------------------------------
 1 file changed, 45 deletions(-)

diff --git a/src/drivers/Qt/TraceLogger.cpp b/src/drivers/Qt/TraceLogger.cpp
index 5849198c..f6303e75 100644
--- a/src/drivers/Qt/TraceLogger.cpp
+++ b/src/drivers/Qt/TraceLogger.cpp
@@ -1030,51 +1030,6 @@ void FCEUD_TraceInstruction(uint8 *opcode, int size)
 
 		if (a)
 		{
-			//if (logging_options & LOG_SYMBOLIC)
-			//{
-			//	loadNameFiles();
-			//	tempAddressesLog.resize(0);
-			//	// Insert Name and Comment lines if needed
-			//	Name* node = findNode(getNamesPointerForAddress(addr), addr);
-			//	if (node)
-			//	{
-			//		if (node->name)
-			//		{
-			//			strcpy(str_decoration, node->name);
-			//			strcat(str_decoration, ":");
-			//			tempAddressesLog.push_back(addr);
-			//			//OutputLogLine(str_decoration, &tempAddressesLog);
-			//		}
-			//		if (node->comment)
-			//		{
-			//			// make a copy
-			//			strcpy(str_decoration_comment, node->comment);
-			//			strcat(str_decoration_comment, "\r\n");
-			//			tracer_decoration_comment = str_decoration_comment;
-			//			// divide the str_decoration_comment into strings (Comment1, Comment2, ...)
-			//			char* tracer_decoration_comment_end_pos = strstr(tracer_decoration_comment, "\r\n");
-			//			while (tracer_decoration_comment_end_pos)
-			//			{
-			//				tracer_decoration_comment_end_pos[0] = 0;		// set \0 instead of \r
-			//				strcpy(str_decoration, "; ");
-			//				strcat(str_decoration, tracer_decoration_comment);
-			//				//OutputLogLine(str_decoration, &tempAddressesLog);
-			//				tracer_decoration_comment_end_pos += 2;
-			//				tracer_decoration_comment = tracer_decoration_comment_end_pos;
-			//				tracer_decoration_comment_end_pos = strstr(tracer_decoration_comment_end_pos, "\r\n");
-			//			}
-			//		}
-			//	}
-			//	
-			//	//replaceNames(ramBankNames, a, &tempAddressesLog);
-			//	//for(int i=0;i<ARRAY_SIZE(pageNames);i++)
-			//	//{
-			//	//	replaceNames(pageNames[i], a, &tempAddressesLog);
-			//	//}
-			//}
-			//strncpy(str_disassembly, a, LOG_DISASSEMBLY_MAX_LEN);
-			//str_disassembly[LOG_DISASSEMBLY_MAX_LEN - 1] = 0;
-
 			rec.appendAsmText(a);
 		}
 	}