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

Transition oryp5 to open firmware #96

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
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
3 changes: 2 additions & 1 deletion src/transition.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Make sure this is up to date with support article
static TRANSITIONS: &'static [Transition] = &[
static TRANSITIONS: &[Transition] = &[
Transition::new("addw2", "PBx0Dx2", false),
Transition::new("darp6", "N150CU", false), // TODO: set liberate to true
// 17-inch 1660Ti
Expand All @@ -10,6 +10,7 @@ static TRANSITIONS: &'static [Transition] = &[
Transition::new_variant("gaze15", 2, "NH50DB", false),
// 15-inch 1650/1650Ti
Transition::new_variant("gaze15", 3, "NH50DB", false),
Transition::new("oryp5", "P950Ex", false),
];

struct Transition {
Expand Down