diff options
author | aap <aap@papnet.eu> | 2020-11-29 12:26:34 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-11-29 21:29:48 +0100 |
commit | d5bc382cb51c5ef5af618377d190e6f34e893314 (patch) | |
tree | f3d376094b50e4cdbfe4b65afef37aab1ccde9a6 /src/render/2dEffect.h | |
parent | add debug script hotkey (diff) | |
download | re3-d5bc382cb51c5ef5af618377d190e6f34e893314.tar re3-d5bc382cb51c5ef5af618377d190e6f34e893314.tar.gz re3-d5bc382cb51c5ef5af618377d190e6f34e893314.tar.bz2 re3-d5bc382cb51c5ef5af618377d190e6f34e893314.tar.lz re3-d5bc382cb51c5ef5af618377d190e6f34e893314.tar.xz re3-d5bc382cb51c5ef5af618377d190e6f34e893314.tar.zst re3-d5bc382cb51c5ef5af618377d190e6f34e893314.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/2dEffect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/2dEffect.h b/src/render/2dEffect.h index 628d64c2..a8013b34 100644 --- a/src/render/2dEffect.h +++ b/src/render/2dEffect.h @@ -78,12 +78,12 @@ public: if(type == EFFECT_LIGHT){ if(light.corona) RwTextureDestroy(light.corona); -#ifdef GTA3_1_1_PATCH +#if GTA_VERSION >= GTA3_PC_11 light.corona = nil; #endif if(light.shadow) RwTextureDestroy(light.shadow); -#ifdef GTA3_1_1_PATCH +#if GTA_VERSION >= GTA3_PC_11 light.shadow = nil; #endif } |