mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- GCC cleanup.
SVN r712 (trunk)
This commit is contained in:
parent
ec17f5a5b9
commit
9706a2b140
2 changed files with 2 additions and 2 deletions
|
@ -386,7 +386,7 @@ void CreatePath(const char * fn)
|
||||||
|
|
||||||
int strbin (char *str)
|
int strbin (char *str)
|
||||||
{
|
{
|
||||||
char *start;
|
char *start = str;
|
||||||
char *p = str, c;
|
char *p = str, c;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
|
@ -2355,7 +2355,7 @@ bool R_GetTransMaskDrawers (fixed_t (**tmvline1)(), void (**tmvline4)())
|
||||||
//
|
//
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
||||||
bool FRenderStyle::IsVisible(fixed_t alpha) const
|
bool FRenderStyle::IsVisible(fixed_t alpha) const throw()
|
||||||
{
|
{
|
||||||
if (BlendOp == STYLEOP_None)
|
if (BlendOp == STYLEOP_None)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue