Fix #2693 aiGetVersionMajor return wrong version

The 2 constants MinorVersion and MajorVersion are updated for 5.0
pull/2695/head
Engin Manap 2019-10-05 19:23:02 +02:00 committed by GitHub
parent 09d80ff478
commit afec2e2c49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <assimp/scene.h>
#include "ScenePrivate.h"
static const unsigned int MajorVersion = 4;
static const unsigned int MinorVersion = 1;
static const unsigned int MajorVersion = 5;
static const unsigned int MinorVersion = 0;
// --------------------------------------------------------------------------------
// Legal information string - don't remove this.