From: curt Date: Tue, 15 May 2001 04:08:31 +0000 (+0000) Subject: Fixed a typo. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b7ccbfe532ad9bb28edabd5ba8dfc9a2df41dd93;p=flightgear.git Fixed a typo. --- diff --git a/src/Objects/matlib.cxx b/src/Objects/matlib.cxx index bfe1b9992..d199c7479 100644 --- a/src/Objects/matlib.cxx +++ b/src/Objects/matlib.cxx @@ -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 ); }