From aac4b2db6df74373ecab3f27157a89a1500baa43 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Mon, 21 Dec 2020 11:04:21 -0500 Subject: [PATCH] Force Irrlicht Version --- build-irrlicht.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-irrlicht.sh b/build-irrlicht.sh index f77a294..5967bf0 100755 --- a/build-irrlicht.sh +++ b/build-irrlicht.sh @@ -1,10 +1,14 @@ #!/bin/sh +IRRLICHT_VERSION='ab46f76665cd621aedc96f938169f3dfe8815154' + set -e -git clone --depth 1 https://github.com/zaki/irrlicht.git -b ogl-es +git clone https://github.com/zaki/irrlicht.git -b ogl-es cd irrlicht +git checkout "${IRRLICHT_VERSION}" + dos2unix source/Irrlicht/CIrrDeviceLinux.cpp dos2unix source/Irrlicht/Makefile dos2unix include/IrrCompileConfig.h