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

Configure Feed

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

Update to v0.11.1

GBA bot 19592ccd 0b95dc82

+7 -3
+5 -1
.cargo/config.toml
··· 6 6 target = "thumbv4t-none-eabi" 7 7 8 8 [target.thumbv4t-none-eabi] 9 - rustflags = ["-Clink-arg=-Tgba.ld"] 9 + rustflags = ["-Clink-arg=-Tgba.ld", "-Ctarget-cpu=arm7tdmi"] 10 + runner = "mgba-qt" 11 + 12 + [target.armv4t-none-eabi] 13 + rustflags = ["-Clink-arg=-Tgba.ld", "-Ctarget-cpu=arm7tdmi"] 10 14 runner = "mgba-qt"
+2 -2
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.10.0" 10 + agb = "0.11.1" 11 11 12 12 [dev-dependencies] 13 - agb = { version = "0.10.0", features = ["testing"] } 13 + agb = { version = "0.11.1", features = ["testing"] } 14 14 15 15 [profile.dev] 16 16 opt-level = 2