From b7ccbfe532ad9bb28edabd5ba8dfc9a2df41dd93 Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 15 May 2001 04:08:31 +0000 Subject: [PATCH] Fixed a typo. --- src/Objects/matlib.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); } -- 2.39.5