File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pub mod windows_ansi;
5
5
pub mod spritesheet;
6
6
pub mod dither;
7
7
pub mod font;
8
- pub mod install ;
8
+ pub mod suite ;
9
9
10
10
use std:: path:: Path ;
11
11
@@ -48,17 +48,15 @@ pub unsafe extern "C" fn geode_version() -> i32 {
48
48
pub unsafe extern "C" fn geode_install_suite (
49
49
location : * const c_char ,
50
50
nightly : bool ,
51
- callback : install :: SuiteProgressCallback
51
+ callback : suite :: SuiteProgressCallback
52
52
) -> * const c_char {
53
- match crate :: install :: install_suite (
53
+ match crate :: suite :: install_suite (
54
54
Path :: new ( c2string ( location) ) ,
55
55
nightly,
56
56
callback
57
57
) {
58
58
Ok ( _) => std:: ptr:: null ( ) ,
59
- Err ( b) => {
60
- string2c ( b)
61
- }
59
+ Err ( b) => string2c ( b)
62
60
}
63
61
}
64
62
File renamed without changes.
You can’t perform that action at this time.
0 commit comments