Skip to content

Commit bbc2cc5

Browse files
committed
rename install.rs to suite.rs
1 parent f4918f7 commit bbc2cc5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

lib/src/lib.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub mod windows_ansi;
55
pub mod spritesheet;
66
pub mod dither;
77
pub mod font;
8-
pub mod install;
8+
pub mod suite;
99

1010
use std::path::Path;
1111

@@ -48,17 +48,15 @@ pub unsafe extern "C" fn geode_version() -> i32 {
4848
pub unsafe extern "C" fn geode_install_suite(
4949
location: *const c_char,
5050
nightly: bool,
51-
callback: install::SuiteProgressCallback
51+
callback: suite::SuiteProgressCallback
5252
) -> *const c_char {
53-
match crate::install::install_suite(
53+
match crate::suite::install_suite(
5454
Path::new(c2string(location)),
5555
nightly,
5656
callback
5757
) {
5858
Ok(_) => std::ptr::null(),
59-
Err(b) => {
60-
string2c(b)
61-
}
59+
Err(b) => string2c(b)
6260
}
6361
}
6462

File renamed without changes.

0 commit comments

Comments
 (0)