Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SLP Parser #30

Draft
wants to merge 6 commits into
base: default
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
slp: cargo fix
  • Loading branch information
goto-bus-stop committed May 24, 2020
commit bee1f27286bf6a5e7cb657402926ba03850549d0
4 changes: 2 additions & 2 deletions crates/genie-slp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ impl<Pixel: Copy> Command<Pixel> {
match self {
Self::Copy(pixels) => Command::Copy(pixels.into_iter().map(transform).collect()),
Self::Fill(num, pixel) => Command::Fill(num, transform(pixel)),
Self::PlayerCopy(pixels) => todo!(),
Self::PlayerFill(num, pixel) => todo!(),
Self::PlayerCopy(_pixels) => todo!(),
Self::PlayerFill(_num, _pixel) => todo!(),
Self::Skip(num) => Command::Skip(num),
Self::NextLine => Command::NextLine,
}
Expand Down