diff --git a/src/common/tv_filters/NTSCFilter.cxx b/src/common/tv_filters/NTSCFilter.cxx
index 71d98b559..2f2c292c4 100644
--- a/src/common/tv_filters/NTSCFilter.cxx
+++ b/src/common/tv_filters/NTSCFilter.cxx
@@ -38,8 +38,6 @@ NTSCFilter::~NTSCFilter()
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void NTSCFilter::setTIAPalette(const uInt32* palette)
{
- // The TIA palette consists of 128 colours, but the palette array actually
- // contains 256 entries, where only every second value is a valid colour
uInt8* ptr = myTIAPalette;
for(int i = 0; i < 256; i++)
{
diff --git a/src/win32/FSNodeWin32.cxx b/src/win32/FSNodeWin32.cxx
index 7daebbca8..97acf5853 100644
--- a/src/win32/FSNodeWin32.cxx
+++ b/src/win32/FSNodeWin32.cxx
@@ -172,7 +172,7 @@ void WindowsFilesystemNode::addFile(AbstractFSList& list, ListMode mode,
{
WindowsFilesystemNode entry;
char* asciiName = toAscii(find_data->cFileName);
- bool isDirectory;
+ bool isDirectory, isFile;
// Skip local directory (.) and parent (..)
if (!strncmp(asciiName, ".", 1) || !strncmp(asciiName, "..", 2))
diff --git a/src/win32/Stella_vs2005.vcproj b/src/win32/Stella_vs2005.vcproj
index c5ff8d208..a63b6b9a6 100644
--- a/src/win32/Stella_vs2005.vcproj
+++ b/src/win32/Stella_vs2005.vcproj
@@ -304,6 +304,10 @@
RelativePath="..\emucore\CartCM.cxx"
>
+
+
@@ -1142,6 +1146,14 @@
RelativePath="..\emucore\CartCM.hxx"
>
+
+
+
+