Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Update dependencies, and fix warnings for the libretro branch #41

Open
wants to merge 14 commits into
base: libretro
Choose a base branch
from

Commits on Jan 17, 2019

  1. Use 12 bits only for background x and parallax

    This is documented in the hardware, but since they're stored in DRAM, I just treated them as 16 bits before. Enforcing this fixes Space Invaders - the last game before we reach 100% compatibility :)
    
    Something to note here is this _only_ covers the x and parallax window attributes; none of the other ones. Before enforcing size on any of the other ones I'd like to come up with some video hardware fuzzing tests.
    yupferris committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f184b29 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9bcb6b9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0e68e0f View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2020

  1. Make a cargo workspace

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    615f908 View commit details
    Browse the repository at this point in the history
  2. Update clap

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    be6ecb4 View commit details
    Browse the repository at this point in the history
  3. Update minifb version

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    97b6095 View commit details
    Browse the repository at this point in the history
  4. Update cpal to 0.12.0

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    905f2e2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cd4d781 View commit details
    Browse the repository at this point in the history
  6. Replace ... with ..=

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    527a52a View commit details
    Browse the repository at this point in the history
  7. Use dyn for trait objects

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    8358b2f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b0fb5d0 View commit details
    Browse the repository at this point in the history
  9. Avoid deprecation warning caused by clap's macro

    the `crate_authors!("seperator")` macro call uses
    `std::sync::ONCE_INIT`, which gets flagged as a deprecated API use. We
    can just do what it does ourselves.
    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    369e22d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3107616 View commit details
    Browse the repository at this point in the history
  11. Bump serde_bytes version

    Dr-Emann committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    94b95e1 View commit details
    Browse the repository at this point in the history