Change default to windowed display.

Full-screen is a...  *challenge* to debug with GDB.
diff --git a/src/projectM-test/projectM-test.cpp b/src/projectM-test/projectM-test.cpp
index f778002..ab4a70a 100644
--- a/src/projectM-test/projectM-test.cpp
+++ b/src/projectM-test/projectM-test.cpp
@@ -58,7 +58,7 @@
 	// window dimensions from configfile
 	wvw = config.read<int>("Window Width", 512);
 	wvh = config.read<int>("Window Height", 512);
-	fullscreen = config.read("Fullscreen", true);
+	fullscreen = config.read("Fullscreen", false);
 
 	init_display(wvw, wvh, &fvw, &fvh, fullscreen);
 
@@ -221,4 +221,3 @@
 	glMatrixMode(GL_MODELVIEW);
 	glDisable(GL_DEPTH_TEST);
 }
-