diff options
| author | Sergeanur <s.anureev@yandex.ua> | 2020-07-29 15:24:42 +0300 |
|---|---|---|
| committer | Sergeanur <s.anureev@yandex.ua> | 2020-07-29 15:24:42 +0300 |
| commit | 6b92e9e12b376b9edf04070ecf83179e9a0f8fda (patch) | |
| tree | 2a3bb24458b915e9c19bd3ad5102b45f8e905c0f /src/rw/RwHelper.cpp | |
| parent | The real pickup reflection fix (diff) | |
| download | re3-6b92e9e12b376b9edf04070ecf83179e9a0f8fda.tar.gz | |
Dual pass rendering for RW 3.3
Diffstat (limited to 'src/rw/RwHelper.cpp')
| -rw-r--r-- | src/rw/RwHelper.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/rw/RwHelper.cpp b/src/rw/RwHelper.cpp index bf70c8dc..08a8fca4 100644 --- a/src/rw/RwHelper.cpp +++ b/src/rw/RwHelper.cpp @@ -11,7 +11,11 @@ RtCharset *debugCharset; #endif -bool gPS2alphaTest = 1; +#ifdef DUAL_PASS_RENDERING +bool gPS2alphaTest = true; +#else +bool gPS2alphaTest = false; +#endif #ifndef FINAL static bool charsetOpen; @@ -644,4 +648,4 @@ RestoreAlphaTest() RwD3D8SetRenderState(D3DRS_ALPHAREF, saved_alpharef); #endif } -#endif +#endif
\ No newline at end of file |
