Skip to content

Commit

Permalink
fix compilation error on non-windows targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ethangreen-dev committed Jan 3, 2024
1 parent a6d0a47 commit 649be29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/tcli/src/game/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ use serde::{Deserialize, Serialize};

use super::{ecosystem, steam};
use crate::error::Error;
use crate::game::win;
use crate::project::ProjectPath;
use crate::ts::v1::models::ecosystem::{GameDef, GameDefPlatform};
use crate::util::os::OS;

#[cfg(windows)]
use crate::game::win;

#[derive(Serialize, Deserialize, Debug, PartialEq)]
pub struct GameData {
pub ecosystem_label: String,
Expand Down

0 comments on commit 649be29

Please sign in to comment.