Ok, this is starting to get fustrating.
string textDisplay ;
textDisplay = inputData [ inputID ] + textSuffix ;
dbText ( xPos + 8 , yPos - 8 , textDisplay.c_str ( ) ) ;
...returns an error:
error C2664: 'dbText' : cannot convert parameter 3 from 'const char *' to 'char *'
I've tried for a while now to get simple data types like strings working! First I was using c style strings, but they were annoying to organize, now I'm the std::string type and it's even more confusing.
Sorry if this query has an obvious answer, I am still getting to know C++.
z_man
EDIT: BTW, the inputData [ ] array is previously declared like so:
string inputData [ 100 ] ;
Intel Core 2 Duo 6600 2GB DDR2 RAM Radeon X1600 Series Realtek Sound System
Persist and you will succeed.