Merge pull request #73 from risingPhil/fix-latest-release-compile-errors

Fix a couple of compile errors on latest-release branch
This commit is contained in:
The Gears of Progress 2025-11-27 14:41:51 -05:00 committed by GitHub
commit 2b682b185f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 3 deletions

View File

@ -9,4 +9,4 @@ ARG GROUP_ID
ENV DEBIAN_FRONTEND="noninteractive"
RUN apt update && apt install -y build-essential python3-pip && pip install pandas requests openpyxl
RUN apt update && apt install -y build-essential python3-pip && pip install pandas requests openpyxl --break-system-packages

View File

@ -175,7 +175,7 @@ clean:
@$(MAKE) -C tools/data-generator clean
@$(MAKE) -C loader clean
@rm -fr $(BUILD) $(TARGET).elf $(TARGET).gba data/ to_compress/
@rm text_helper/output.json
@rm -f text_helper/output.json

View File

@ -1,7 +1,7 @@
#!/bin/sh
infile="$1"
outfile="data/$(basename "$infile" .bin)_lz10.bin"
if [ "$infile" -nt "$outfile" ]; then
if [ ! -f "$outfile" ] || [ "$infile" -nt "$outfile" ]; then
gbalzss e "$infile" "$outfile"
echo -n "C"
else

View File

@ -7,10 +7,12 @@
#define NUM_POKEMON 252
#define POKEMON_ARRAY_SIZE NUM_POKEMON + 1
#ifndef TONC_TYPES
typedef uint8_t u8;
typedef uint8_t byte;
typedef uint16_t u16;
typedef uint32_t u32;
#endif
void generate_pokemon_data(const char *output_path);