From 3fdbc0054c7c6c6a7280f54893054678533ee5db Mon Sep 17 00:00:00 2001 From: Andrea Ciliberti Date: Tue, 2 Jan 2024 19:59:53 +0100 Subject: [PATCH] Replacee --- ctru-rs/examples/title-info.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ctru-rs/examples/title-info.rs b/ctru-rs/examples/title-info.rs index fda2b53..752cd74 100644 --- a/ctru-rs/examples/title-info.rs +++ b/ctru-rs/examples/title-info.rs @@ -20,20 +20,20 @@ fn main() { // Amount of titles installed on the SD card. let sd_count = am - .title_count(FsMediaType::Sd) + .title_count(MediaType::Sd) .expect("Failed to get sd title count"); // List of titles installed on the SD card. let sd_list = am - .title_list(FsMediaType::Sd) + .title_list(MediaType::Sd) .expect("Failed to get sd title list"); // Amount of titles installed on the NAND storage. let nand_count = am - .title_count(FsMediaType::Nand) + .title_count(MediaType::Nand) .expect("Failed to get nand title count"); // List of titles installed on the NAND storage. let nand_list = am - .title_list(FsMediaType::Nand) + .title_list(MediaType::Nand) .expect("Failed to get nand title list"); let mut offset = 0;