X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=code.c;h=713d98dbad964cfc80ff2350dce40d5684d93206;hb=199ed6c31ff84e564ed665da5e12cbd99fcf4126;hp=092555170035850f4c441246977f1309b247eecb;hpb=3567abbd64d4cb5a0db5e434955c83a924635d6f;p=xonotic%2Fgmqcc.git diff --git a/code.c b/code.c index 0925551..713d98d 100644 --- a/code.c +++ b/code.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 + * Copyright (C) 2012, 2013 * Dale Weiler * Wolfgang Bumiller * @@ -169,7 +169,6 @@ bool code_write(const char *filename, const char *lnofile) { util_endianswap(code_globals, vec_size(code_globals), sizeof(int32_t)); if (lnofile) { - uint32_t lnotype = *(unsigned int*)"LNOF"; uint32_t version = 1; fp = file_open(lnofile, "wb"); @@ -180,7 +179,7 @@ bool code_write(const char *filename, const char *lnofile) { util_endianswap(code_linenums, vec_size(code_linenums), sizeof(code_linenums[0])); - if (file_write(&lnotype, sizeof(lnotype), 1, fp) != 1 || + if (file_write("LNOF", 4, 1, fp) != 1 || file_write(&version, sizeof(version), 1, fp) != 1 || file_write(&code_header.defs.length, sizeof(code_header.defs.length), 1, fp) != 1 || file_write(&code_header.globals.length, sizeof(code_header.globals.length), 1, fp) != 1 ||