Browse Source

Fix 32bit build and some warnings

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.0
falkTX 3 years ago
parent
commit
8beb4c733d
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 4 additions and 1 deletions
  1. +1
    -1
      source/modules/ysfx/Makefile
  2. +1
    -0
      source/modules/ysfx/sources/ysfx.cpp
  3. +2
    -0
      source/modules/ysfx/thirdparty/WDL/source/WDL/eel2/y.tab.c

+ 1
- 1
source/modules/ysfx/Makefile View File

@@ -159,7 +159,7 @@ $(OBJDIR)/%.mm.o: %.mm
$(OBJDIR)/%.S.o: %.S
-@mkdir -p $(dir $@)
@echo "Compiling $<"
@$(CC) $< $(BUILD_ASM_FLAGS) -c -o $@
@$(CC) $< $(BUILD_C_FLAGS) -c -o $@

-include $(OBJS:%.o=%.d)



+ 1
- 0
source/modules/ysfx/sources/ysfx.cpp View File

@@ -1533,6 +1533,7 @@ bool ysfx_gfx_run(ysfx_t *fx)

return ysfx_gfx_state_is_dirty(fx->gfx.state.get());
#else
return false;
(void)fx;
#endif
}

+ 2
- 0
source/modules/ysfx/thirdparty/WDL/source/WDL/eel2/y.tab.c View File

@@ -2156,8 +2156,10 @@ yyexhaustedlab:

yyreturn:
if (yychar != YYEOF && yychar != YYEMPTY)
{
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval, &yylloc, context);
}
/* Do not reclaim the symbols of the rule which action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);


Loading…
Cancel
Save