Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 30, 2003
1 parent cfa612d commit fb2db99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions doomsday/Src/dd_main.c
Expand Up @@ -616,10 +616,8 @@ ddvalue_t ddValues[DD_LAST_VALUE - DD_FIRST_VALUE - 1] =
{ &netgame, 0 },
{ &isServer, 0 }, // An *open* server?
{ &isClient, 0 },
{ &allow_frames, &allow_frames },
{ &allowFrames, &allowFrames },
{ &skyflatnum, 0 },
// { &numflats, 0 },
// { &firstflat, 0 },
{ &gametic, 0 },
{ &viewwindowx, &viewwindowx },
{ &viewwindowy, &viewwindowy },
Expand Down
2 changes: 1 addition & 1 deletion doomsday/Src/gl_tga.c
Expand Up @@ -14,7 +14,7 @@ int TGA_Save24_rgb565(char *filename,int w,int h,uShort *buffer)
uChar *saveBuf;
int saveBufStart = w*h-1; // From the end.

if((file=fopen(filename,"wb"))==NULL) return 0;
if((file = fopen(filename,"wb")) == NULL) return 0;

saveBuf = malloc(w * h * 3);

Expand Down

0 comments on commit fb2db99

Please sign in to comment.