mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-12 17:32:21 -04:00
Realign enums that had UnsupportedFeature to start at 0
This commit is contained in:
parent
c37bd22db0
commit
35e520712d
5 changed files with 24 additions and 24 deletions
|
@ -26,8 +26,8 @@ pub enum HardwareVariant {
|
|||
#[derive(PartialEq, Debug, Copy, Clone)]
|
||||
#[repr(u32)]
|
||||
pub enum HardwareCurrentlySupported {
|
||||
Unsupported = 1,
|
||||
Supported = 2,
|
||||
Unsupported = 0,
|
||||
Supported = 1,
|
||||
}
|
||||
|
||||
impl FromStr for HardwareVariant {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue