My actor.rpg avatar walking around on a GBA game
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update to v0.20.0

GBA bot 7156c334 124efa1a

+11 -3
+10 -2
.cargo/config.toml
··· 6 6 target = "thumbv4t-none-eabi" 7 7 8 8 [target.thumbv4t-none-eabi] 9 - rustflags = ["-Clink-arg=-Tgba.ld", "-Ctarget-cpu=arm7tdmi"] 9 + rustflags = [ 10 + "-Clink-arg=-Tgba.ld", 11 + "-Ctarget-cpu=arm7tdmi", 12 + "-Cforce-frame-pointers=yes", 13 + ] 10 14 runner = ["mgba-qt", "-C", "logToStdout=1", "-C", "logLevel.gba.debug=127"] 11 15 12 16 [target.armv4t-none-eabi] 13 - rustflags = ["-Clink-arg=-Tgba.ld", "-Ctarget-cpu=arm7tdmi"] 17 + rustflags = [ 18 + "-Clink-arg=-Tgba.ld", 19 + "-Ctarget-cpu=arm7tdmi", 20 + "-Cforce-frame-pointers=yes", 21 + ] 14 22 runner = ["mgba-qt", "-C", "logToStdout=1", "-C", "logLevel.gba.debug=127"]
+1 -1
Cargo.toml
··· 7 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 8 9 9 [dependencies] 10 - agb = "0.19.1" 10 + agb = "0.20.0" 11 11 12 12 [profile.dev] 13 13 opt-level = 3