diff --git a/VisualC.html b/VisualC.html index 0c53b9487..89035d677 100644 --- a/VisualC.html +++ b/VisualC.html @@ -110,8 +110,8 @@

Now create the basic body of your project. The body of your program should take - the following form: -

+			the following form:
+			

 #include "SDL.h"
 
 int main( int argc, char* argv[] )
@@ -119,8 +119,7 @@ int main( int argc, char* argv[] )
   // Body of the program goes here.
   return 0;
 }
-
- +

That's it!