diff --git a/rpcs3/rpcs3.vcxproj.filters b/rpcs3/rpcs3.vcxproj.filters
index 449a4a11d4..797257d46b 100644
--- a/rpcs3/rpcs3.vcxproj.filters
+++ b/rpcs3/rpcs3.vcxproj.filters
@@ -557,9 +557,6 @@
Gui\message dialog
-
- Generated Files\Debug
-
Io\evdev
@@ -831,9 +828,6 @@
Gui\message dialog
-
- Generated Files
-
Gui\save
diff --git a/rpcs3/rpcs3qt/syntax_highlighter.cpp b/rpcs3/rpcs3qt/syntax_highlighter.cpp
index d12bf99cfe..ac6d3b948e 100644
--- a/rpcs3/rpcs3qt/syntax_highlighter.cpp
+++ b/rpcs3/rpcs3qt/syntax_highlighter.cpp
@@ -45,8 +45,7 @@ void Highlighter::highlightBlock(const QString &text)
}
else
{
- commentLength = endIndex - startIndex
- + match.capturedLength();
+ commentLength = endIndex - startIndex + match.capturedLength();
}
setFormat(startIndex, commentLength, multiLineCommentFormat);
startIndex = text.indexOf(commentStartExpression, startIndex + commentLength);
diff --git a/rpcs3/rpcs3qt/syntax_highlighter.h b/rpcs3/rpcs3qt/syntax_highlighter.h
index 8dd221fd6d..4cd1d36c9b 100644
--- a/rpcs3/rpcs3qt/syntax_highlighter.h
+++ b/rpcs3/rpcs3qt/syntax_highlighter.h
@@ -43,4 +43,4 @@ class GlslHighlighter : public Highlighter
public:
GlslHighlighter(QTextDocument *parent = 0);
-};
\ No newline at end of file
+};