Compiling errors

  • Made2Shred
    6th Feb 2011 Member 0 Permalink
    I Have 473 lines of errors in my mod when i go to compile.

    they are: http://paste.fxn.comli.com/index.php/view/54198048

    advice?
  • jacksonmj
    6th Feb 2011 Developer 0 Permalink
    Advice is to read the error messages....

    includes/powder.h:318: error: stray ‘@’ in program
    includes/powder.h:319: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘int’

    Check lines 318 and 319 of powder.h, and tell us what they are if you can't see any problems?
  • Made2Shred
    6th Feb 2011 Member 0 Permalink
    nvm fixed.

    spacing was out

    instead of

    int update_SPNG(UPDATE_FUNC_ARGS);
    int update_SPRK(UPDATE_FUNC_ARGS);
    int update_STKM(UPDATE_FUNC_ARGS);
    int update_STKM2(UPDATE_FUNC_ARGS);
    int update_SWCH(UPDATE_FUNC_ARGS);
    int update_THDR(UPDATE_FUNC_ARGS);

    it was

    int update_SPNG(UPDATE_FUNC_ARGS);
    int update_SPRK(UPDATE_FUNC_ARGS);
    int update_STKM(UPDATE_FUNC_ARGS);int update_STKM2(UPDATE_FUNC_ARGS);
    int update_SWCH(UPDATE_FUNC_ARGS);
    int update_THDR(UPDATE_FUNC_ARGS);