Browse Source

Merge pull request #338 from squidcc/nightly

fix typo in DrawAutomapType
pull/4/head
Anders Jenbo 8 years ago committed by GitHub
parent
commit
74a9bc11e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Source/automap.cpp

2
Source/automap.cpp

@ -465,7 +465,7 @@ void __fastcall DrawAutomapType(int screen_x, int screen_y, USHORT automap_type)
y2 = screen_y + AMPlayerX;
DrawLine(screen_x, y1, screen_x - AMPlayerX, y1 - AMPlayerY, COLOR_DIM);
DrawLine(x1, screen_y, screen_x + AMPlayerX, screen_y + AMPlayerY, COLOR_DIM);
DrawLine(x1, screen_y, x1 + AMPlayerX, screen_y + AMPlayerY, COLOR_DIM);
DrawLine(x2, y1, x1, y2, COLOR_BRIGHT);
DrawLine(x2, y1, screen_x, y2, COLOR_BRIGHT);
DrawLine(x2, screen_y, x1, y2, COLOR_BRIGHT);

Loading…
Cancel
Save