@ -68,7 +68,7 @@ fn main() {
// Render the title list via a scrollable text UI.
if refresh {
let mut selected_title = cur_list.iter().nth(offset).unwrap();
let mut selected_title = cur_list.get(offset).unwrap();
// Clear the top screen and write title IDs to it.
top_screen.select();
@ -87,7 +87,7 @@ mod tests {
fn romfs_lock() {
let romfs = RomFS::new().unwrap();
*ROMFS_ACTIVE.try_lock().unwrap();
ROMFS_ACTIVE.try_lock().unwrap();
drop(romfs);
}