mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA: Fix -Wmisleading-identation warning
source/gl_hud.c: In function 'HUD_Parse_Achievement': source/gl_hud.c:1689:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 1689 | if (achievement_list[ach].unlocked) | ^~ source/gl_hud.c:1692:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 1692 | achievement_unlocked = 1; | ^~~~~~~~~~~~~~~~~~~~
This commit is contained in:
parent
c850e72b53
commit
251c34708c
1 changed files with 2 additions and 2 deletions
|
@ -1686,8 +1686,8 @@ void HUD_Achievement (void)
|
|||
|
||||
void HUD_Parse_Achievement (int ach)
|
||||
{
|
||||
if (achievement_list[ach].unlocked)
|
||||
return;
|
||||
if (achievement_list[ach].unlocked)
|
||||
return;
|
||||
|
||||
achievement_unlocked = 1;
|
||||
smallsec = 0;
|
||||
|
|
Loading…
Reference in a new issue