OK, bear with me. I have only started trying to get my head around C++ today.
I wrote a small bit of code that does nothing at the moment but I get these three warnings:
1>c:usersadministratordocumentsvisual studio 2008projectsdark gdk - game1dark gdk - game1main.cpp(49) : warning C4129: 'o' : unrecognized character escape sequence
1>c:usersadministratordocumentsvisual studio 2008projectsdark gdk - game1dark gdk - game1main.cpp(49) : warning C4129: 'S' : unrecognized character escape sequence
1>c:usersadministratordocumentsvisual studio 2008projectsdark gdk - game1dark gdk - game1main.cpp(49) : warning C4129: 's' : unrecognized character escape sequence
The line that they refer to is:
dbLoadObject( "MediaobjectsShipsf-21.dbo", oShip );
Where oShip is:
#define oShip 1
The warnings are obviously refering to the first character after each backslash ... but why?
As far as I can tell that should load a dbo object but it doesn't ... what I am not doing or what am I doing that I shouldn't be?
Thanks