1
0
Fork 0

Fixed a typo.

This commit is contained in:
curt 2001-05-15 04:08:31 +00:00
parent a01a26a009
commit b7ccbfe532

View file

@ -289,10 +289,10 @@ void FGMaterialLib::load_next_deferred() {
SG_LOG( SG_GENERAL, SG_INFO, "Loading texture for " << key );
#ifdef PLIB_1_2_X
slot.get_textured()->
setTexture( (char *)slot.get_texture_name_c_str(), 0, 0, 0 );
setTexture( (char *)slot.get_texture_name_c_str(), 0, 0 );
#else
slot.get_textured()->
setTexture( (char *)slot.get_texture_name_c_str(), 0, 0 );
setTexture( (char *)slot.get_texture_name_c_str(), 0, 0, 0 );
#endif
slot.set_texture_loaded( true );
}