mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 03:49:00 +00:00
fix hud render states; bug in coronas
This commit is contained in:
parent
d711af4757
commit
8946a20983
4 changed files with 808 additions and 816 deletions
|
@ -13,7 +13,7 @@
|
|||
#include "MBlur.h"
|
||||
#include "Camera.h"
|
||||
|
||||
const float DefaultFOV = 80.0f; // actually 70.0f
|
||||
const float DefaultFOV = 70.0f; // beta: 80.0f
|
||||
|
||||
CCamera &TheCamera = *(CCamera*)0x6FACF8;
|
||||
bool &CCamera::m_bUseMouse3rdPerson = *(bool *)0x5F03D8;
|
||||
|
|
|
@ -342,7 +342,7 @@ patch()
|
|||
{
|
||||
StaticPatcher::Apply();
|
||||
|
||||
Patch<float>(0x46BC61+6, 1.0f); // car distance
|
||||
// Patch<float>(0x46BC61+6, 1.0f); // car distance
|
||||
InjectHook(0x59E460, printf, PATCH_JUMP);
|
||||
InjectHook(0x475E00, printf, PATCH_JUMP); // _Error
|
||||
|
||||
|
|
|
@ -388,7 +388,7 @@ CCoronas::Render(void)
|
|||
// streaks
|
||||
for(i = 0; i < NUMCORONAS; i++){
|
||||
if(aCoronas[i].id == 0 || !aCoronas[i].drawStreak)
|
||||
break;
|
||||
continue;
|
||||
|
||||
for(j = 0; j < 5; j++){
|
||||
if(!aCoronas[i].hasValue[j] || !aCoronas[i].hasValue[j+1])
|
||||
|
|
1618
src/render/Hud.cpp
1618
src/render/Hud.cpp
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue