- scriptified the automap HUD and made it obey hud_scale instead of always being fully scaled.
This commit is contained in:
parent
2f06c09681
commit
7ba6860102
8 changed files with 148 additions and 89 deletions
|
|
@ -596,7 +596,7 @@ int strbin (char *str)
|
|||
case '5':
|
||||
case '6':
|
||||
case '7':
|
||||
c = 0;
|
||||
c = *p - '0';
|
||||
for (i = 0; i < 2; i++)
|
||||
{
|
||||
p++;
|
||||
|
|
@ -699,7 +699,7 @@ FString strbin1 (const char *start)
|
|||
case '5':
|
||||
case '6':
|
||||
case '7':
|
||||
c = 0;
|
||||
c = *p - '0';
|
||||
for (i = 0; i < 2; i++)
|
||||
{
|
||||
p++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue