diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-16 00:56:15 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-04-16 00:56:15 +0200 |
commit | f435455bdee2bbe6a55f12fb8854659260b7a559 (patch) | |
tree | 067fd961924225a38658e3064ee6e3b313741aba /src/weapons/Explosion.cpp | |
parent | Fix misplaced targeting (diff) | |
download | re3-f435455bdee2bbe6a55f12fb8854659260b7a559.tar re3-f435455bdee2bbe6a55f12fb8854659260b7a559.tar.gz re3-f435455bdee2bbe6a55f12fb8854659260b7a559.tar.bz2 re3-f435455bdee2bbe6a55f12fb8854659260b7a559.tar.lz re3-f435455bdee2bbe6a55f12fb8854659260b7a559.tar.xz re3-f435455bdee2bbe6a55f12fb8854659260b7a559.tar.zst re3-f435455bdee2bbe6a55f12fb8854659260b7a559.zip |
Diffstat (limited to 'src/weapons/Explosion.cpp')
-rw-r--r-- | src/weapons/Explosion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/weapons/Explosion.cpp b/src/weapons/Explosion.cpp index 3d00052a..02243702 100644 --- a/src/weapons/Explosion.cpp +++ b/src/weapons/Explosion.cpp @@ -19,7 +19,7 @@ #include "WaterLevel.h" #include "World.h" -CExplosion(&gaExplosion)[NUM_EXPLOSIONS] = *(CExplosion(*)[NUM_EXPLOSIONS])*(uintptr*)0x64E208; +CExplosion gaExplosion[NUM_EXPLOSIONS]; // these two were not initialised in original code, I'm really not sure what were they meant to be RwRGBA colMedExpl = { 0, 0, 0, 0 }; |