Skip to content

Commit 849073e

Browse files
fix imports in p8tool
1 parent 90a8df2 commit 849073e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

drive/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ foreground_sleep_ms 2 // number of milliseconds to sleep each frame. Try 10 to c
3030

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

33-
sessions 304 // number of times program has been run
33+
sessions 305 // number of times program has been run
3434

3535
// (scancode) hold this key down and left-click to simulate right-click
3636
rmb_key 0 // 0 for none 226 for LALT

src/cli.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ use std::{
77
};
88

99
use clap::{Parser, Subcommand};
10-
use consts::*;
11-
12-
use crate::bbs::Metadata;
10+
use picolauncher::{bbs::Metadata, consts::*, p8util};
1311

1412
#[derive(Subcommand, Debug)]
1513
enum Commands {

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fn main() {
5757
});
5858

5959
if let Err(e) = create_dirs() {
60-
warn!("failed to create directories: {e:?}");
60+
warn!("failed to create directories: {e:?}")
6161
}
6262

6363
// launch pico8 binary

0 commit comments

Comments
 (0)