Browse Source

Fixed issues in normal builds

pull/50/head
Andrea Ciliberti 3 years ago
parent
commit
1e03d8c6b7
  1. 2
      ctru-rs/Cargo.toml
  2. 2
      ctru-rs/src/gfx.rs

2
ctru-rs/Cargo.toml

@ -19,6 +19,7 @@ pthread-3ds = { git = "https://github.com/Meziu/pthread-3ds.git" }
libc = "0.2.116" libc = "0.2.116"
bitflags = "1.0.0" bitflags = "1.0.0"
widestring = "0.2.2" widestring = "0.2.2"
once_cell = "1.10.0"
[build-dependencies] [build-dependencies]
toml = "0.5" toml = "0.5"
@ -29,7 +30,6 @@ futures = "0.3"
time = "0.3.7" time = "0.3.7"
tokio = { version = "1.16", features = ["rt", "time", "sync", "macros"] } tokio = { version = "1.16", features = ["rt", "time", "sync", "macros"] }
cfg-if = "1.0.0" cfg-if = "1.0.0"
once_cell = "1.10.0"
[features] [features]
default = ["romfs"] default = ["romfs"]

2
ctru-rs/src/gfx.rs

@ -5,7 +5,7 @@ use std::cell::RefCell;
use std::marker::PhantomData; use std::marker::PhantomData;
use std::sync::Mutex; use std::sync::Mutex;
use crate::error::{Error, Result}; use crate::error::Result;
use crate::services::gspgpu::{self, FramebufferFormat}; use crate::services::gspgpu::{self, FramebufferFormat};
use crate::services::ServiceReference; use crate::services::ServiceReference;

Loading…
Cancel
Save