Skip to content

Commit 0780bc8

Browse files
authored
Fix template pointing to wrong asset location (#6)
1 parent 3e90579 commit 0780bc8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.vscode/c_cpp_properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"${workspaceFolder}/include/dummy_headers",
88
"${workspaceFolder}/mm-decomp/include",
99
"${workspaceFolder}/mm-decomp/src",
10-
"${workspaceFolder}/mm-decomp/extracted/n64-us/assets"
10+
"${workspaceFolder}/mm-decomp/extracted/n64-us"
1111
],
1212
"defines": [
1313
"F3DEX_GBI_2",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ CFLAGS := -target mips -mips2 -mabi=32 -O2 -G0 -mno-abicalls -mno-odd-spreg -m
1010
-Wall -Wextra -Wno-incompatible-library-redeclaration -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-variable \
1111
-Wno-missing-braces -Wno-unsupported-floating-point-opt -Werror=section
1212
CPPFLAGS := -nostdinc -D_LANGUAGE_C -DMIPS -DF3DEX_GBI_2 -DF3DEX_GBI_PL -DGBI_DOWHILE -I include -I include/dummy_headers \
13-
-I mm-decomp/include -I mm-decomp/src -I mm-decomp/extracted/n64-us/assets -I mm-decomp/include/libc
13+
-I mm-decomp/include -I mm-decomp/src -I mm-decomp/extracted/n64-us -I mm-decomp/include/libc
1414
LDFLAGS := -nostdlib -T $(LDSCRIPT) -Map $(BUILD_DIR)/mod.map --unresolved-symbols=ignore-all --emit-relocs -e 0 --no-nmagic
1515

1616
C_SRCS := $(wildcard src/*.c)

0 commit comments

Comments
 (0)