1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 16:27:36 +00:00

Minor things

This commit is contained in:
eray orçunus 2020-10-18 13:53:17 +03:00
parent cafe4e38db
commit f60e3d667a
3 changed files with 3 additions and 1 deletions

View file

@ -272,7 +272,7 @@ uint8 CRadar::CalculateBlipAlpha(float dist)
return 255;
if (dist <= 10.0f)
return (128.0f * ((dist - 1.0f) / 4.0f)) + ((1.0f - (dist - 1.0f) / 4.0f) * 255.0f);
return (128.0f * ((dist - 1.0f) / 9.0f)) + ((1.0f - (dist - 1.0f) / 9.0f) * 255.0f);
return 128;
}

View file

@ -43,6 +43,7 @@
#define MAX_SUBSYSTEMS (16)
// --MIAMI: file done
rw::EngineOpenParams openParams;

View file

@ -53,6 +53,7 @@
#define MAX_SUBSYSTEMS (16)
// --MIAMI: file done
static RwBool ForegroundApp = TRUE;