Skip to content

Commit c3c89b2

Browse files
committed
Align with v1.3
1 parent b72d96b commit c3c89b2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
steps:
77
- uses: actions/checkout@v4
88
- name: Build
9-
run: docker run --rm -v ${{ github.workspace }}:/gba aaaronic/gba-compiler:1.2
10-
- name: Upload Project.gba
9+
run: docker run --rm -v ${{ github.workspace }}:/gba aaaronic/gba-compiler:1.3
10+
- name: Upload my_project.gba
1111
uses: actions/upload-artifact@v4
1212
with:
13-
name: Project.gba
14-
path: ${{ github.workspace }}/Project.gba
13+
name: my_project.gba
14+
path: ${{ github.workspace }}/my_project.gba

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PRODUCT_NAME = Project
1+
PRODUCT_NAME = my_project
22

33
# You probably won't need to touch anything below here!!!
44
# The one exception is the cleanup stuff.
@@ -79,7 +79,7 @@ $(AUDIOHEADERS) : %.h : %.c
7979

8080

8181
clean:
82-
$(RM) $(ROM_NAME) $(ELF_NAME) $(BIN_NAME)
82+
$(RM) $(ROM_NAME) $(ELF_NAME) $(BIN_NAME).sav
8383
$(RM) $(AUDIOOBJECTS) $(AUDIOHEADERS)
8484
$(RM) *.o *.i *.s
8585

wav2c

-17.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)