Skip to content

Commit

Permalink
Fixed build error reported by gcc under *nix. Interesting that msvc i…
Browse files Browse the repository at this point in the history
…s happy about this, maybe I've pragma'd something I shouldn't have.
  • Loading branch information
danij committed Jan 15, 2009
1 parent 1c31a75 commit 7f32f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/def_read.c
Expand Up @@ -1013,7 +1013,7 @@ static int DED_ReadData(ded_t* ded, char* buffer, const char* sourceFile)
{
READLABEL;
RV_STR("ID", mat->id.name)
RV_FLAGS("Group", ((int) mat->id.group), "mg_")
RV_FLAGS("Group", mat->id.group, "mg_")
RV_FLAGS("Flags", mat->flags, "matf_")
RV_FLT("Width", mat->width)
RV_FLT("Height", mat->height)
Expand Down

0 comments on commit 7f32f8a

Please sign in to comment.