Skip to content

Commit

Permalink
Heretic|Fixed: Attempt to index outside PLAYPAL when drawing Thing po…
Browse files Browse the repository at this point in the history
…ints
  • Loading branch information
danij-deng committed Jan 29, 2012
1 parent 4358209 commit f035c41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/include/am_map.h
Expand Up @@ -71,7 +71,7 @@
#define TSWALLCOLORS GRAYS
#define CDWALLCOLORS YELLOWS
#define FDWALLCOLORS BROWNS
#define THINGCOLORS GREENS
#define THINGCOLORS 4
#define BACKGROUND PARCH

// Keys for Baby Mode
Expand Down
6 changes: 3 additions & 3 deletions doomsday/plugins/jheretic/src/h_main.c
Expand Up @@ -294,9 +294,9 @@ void H_PreInit(void)
cfg.automapL3[1] = .230f;
cfg.automapL3[2] = .121f;

cfg.automapMobj[0] = 1.f;
cfg.automapMobj[1] = 1.f;
cfg.automapMobj[2] = 1.f;
cfg.automapMobj[0] = .093f;
cfg.automapMobj[1] = .093f;
cfg.automapMobj[2] = .093f;

cfg.automapBack[0] = 1.0f;
cfg.automapBack[1] = 1.0f;
Expand Down

0 comments on commit f035c41

Please sign in to comment.