quiero hacer esto:
using namespace std;
void funcion(){
string linea;
ifstream MiArchivo ("player.txt");
if (MiArchivo.is_open()){
getline (MiArchivo,linea);
textout_ex( buffer, (FONT*)fonts_datafile[MY_FONT001].dat, linea, 9*32, 8*32, makecol( 0, 220, 0), makecol( -1, 0, 0));
}
MiArchivo.close();
}
El problema es que hay una conversion invalida de std::string a const char*, esto funciona en modo texto pero usando:
cout << linea << endl; en vez de textout_ex, y yo lo quiero hacerlo con allegro.