summaryrefslogtreecommitdiff
path: root/VisualC.html
diff options
context:
space:
mode:
authorPhilipp Wiesemann <philipp.wiesemann@arcor.de>2013-06-29 22:08:38 +0200
committerPhilipp Wiesemann <philipp.wiesemann@arcor.de>2013-06-29 22:08:38 +0200
commit0870d5aa0b01e383da44f51c082570bb7eb16417 (patch)
tree6e5fd26a7a27aec510b604c72dbc5b3f978d78c4 /VisualC.html
parent26074177a9a776a4178213546826bfb0035615e2 (diff)
downloadsdl-0870d5aa0b01e383da44f51c082570bb7eb16417.tar.gz
Changed paths and name of header file in text of VisualC.html.
Diffstat (limited to 'VisualC.html')
-rw-r--r--VisualC.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/VisualC.html b/VisualC.html
index e22f06f1c..a25907bd9 100644
--- a/VisualC.html
+++ b/VisualC.html
@@ -71,8 +71,8 @@
add the include and library directories to the list that VC7 keeps. Do this by
selecting Tools|Options|Projects|VC++ Directories and under the "Show
Directories For:" dropbox select "Include Files", and click the "New Directory
- Icon" and add the [SDLROOT]\include directory (ex. If you installed to
- c:\SDL-1.2.5\ add c:\SDL-1.2.5\include).&nbsp;Proceed to&nbsp;change the
+ Icon" and add the [SDLROOT]\include directory (e.g. If you installed to
+ c:\SDL\ add c:\SDL\include).&nbsp;Proceed to&nbsp;change the
dropbox selection to "Library Files" and add [SDLROOT]\lib.</FONT></STRONG>
</P>
<P>
@@ -105,7 +105,7 @@
desireable to add them to the linker options: Project|Properties|Linker|Command
Line and type the names of the libraries to link with in the "Additional
Options:" box.&nbsp; Note: This must be done&nbsp;for&nbsp;each&nbsp;build
- configuration (eg. Release,Debug).</FONT></STRONG></P>
+ configuration (e.g. Release,Debug).</FONT></STRONG></P>
<H3>
SDL 101, First Day of Class
</H3>
@@ -113,7 +113,7 @@
Now create the basic body of your project. The body of your program should take
the following form: <CODE>
<PRE>
-#include "SDL2.h"
+#include "SDL.h"
int main( int argc, char* argv[] )
{