Skip to content

Commit

Permalink
fix imports in p8tool
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPicklePinosaur committed Sep 25, 2024
1 parent 90a8df2 commit 849073e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drive/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ foreground_sleep_ms 2 // number of milliseconds to sleep each frame. Try 10 to c

background_sleep_ms 10 // number of milliseconds to sleep each frame when running in the background

sessions 304 // number of times program has been run
sessions 305 // number of times program has been run

// (scancode) hold this key down and left-click to simulate right-click
rmb_key 0 // 0 for none 226 for LALT
Expand Down
4 changes: 1 addition & 3 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ use std::{
};

use clap::{Parser, Subcommand};
use consts::*;

use crate::bbs::Metadata;
use picolauncher::{bbs::Metadata, consts::*, p8util};

#[derive(Subcommand, Debug)]
enum Commands {
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn main() {
});

if let Err(e) = create_dirs() {
warn!("failed to create directories: {e:?}");
warn!("failed to create directories: {e:?}")
}

// launch pico8 binary
Expand Down

0 comments on commit 849073e

Please sign in to comment.