summaryrefslogtreecommitdiffstats
path: root/src/extras/custompipes_gl.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-12-30 15:08:10 +0100
committeraap <aap@papnet.eu>2020-12-30 15:08:10 +0100
commit77884e0a5784cca2ce057453b34c0b0879c7144b (patch)
treef48db646d637e1c0e37ed977934b817ee5320563 /src/extras/custompipes_gl.cpp
parentfix custom pipes mem leak (diff)
downloadre3-77884e0a5784cca2ce057453b34c0b0879c7144b.tar
re3-77884e0a5784cca2ce057453b34c0b0879c7144b.tar.gz
re3-77884e0a5784cca2ce057453b34c0b0879c7144b.tar.bz2
re3-77884e0a5784cca2ce057453b34c0b0879c7144b.tar.lz
re3-77884e0a5784cca2ce057453b34c0b0879c7144b.tar.xz
re3-77884e0a5784cca2ce057453b34c0b0879c7144b.tar.zst
re3-77884e0a5784cca2ce057453b34c0b0879c7144b.zip
Diffstat (limited to 'src/extras/custompipes_gl.cpp')
-rw-r--r--src/extras/custompipes_gl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extras/custompipes_gl.cpp b/src/extras/custompipes_gl.cpp
index 861a831e..a7267fc6 100644
--- a/src/extras/custompipes_gl.cpp
+++ b/src/extras/custompipes_gl.cpp
@@ -147,7 +147,7 @@ CreateVehiclePipe(void)
using namespace rw;
using namespace rw::gl3;
- if(CFileMgr::LoadFile("neo/carTweakingTable.dat", work_buff, sizeof(work_buff), "r") == 0)
+ if(CFileMgr::LoadFile("neo/carTweakingTable.dat", work_buff, sizeof(work_buff), "r") <= 0)
printf("Error: couldn't open 'neo/carTweakingTable.dat'\n");
else{
char *fp = (char*)work_buff;
@@ -264,7 +264,7 @@ CreateWorldPipe(void)
using namespace rw;
using namespace rw::gl3;
- if(CFileMgr::LoadFile("neo/worldTweakingTable.dat", work_buff, sizeof(work_buff), "r") == 0)
+ if(CFileMgr::LoadFile("neo/worldTweakingTable.dat", work_buff, sizeof(work_buff), "r") <= 0)
printf("Error: couldn't open 'neo/worldTweakingTable.dat'\n");
else
ReadTweakValueTable((char*)work_buff, WorldLightmapBlend);
@@ -533,7 +533,7 @@ CreateRimLightPipes(void)
{
using namespace rw::gl3;
- if(CFileMgr::LoadFile("neo/rimTweakingTable.dat", work_buff, sizeof(work_buff), "r") == 0)
+ if(CFileMgr::LoadFile("neo/rimTweakingTable.dat", work_buff, sizeof(work_buff), "r") <= 0)
printf("Error: couldn't open 'neo/rimTweakingTable.dat'\n");
else{
char *fp = (char*)work_buff;