Skip to content

Commit

Permalink
fix(i18): 💚 fix compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
melody-rs committed Sep 24, 2023
1 parent 0c82f57 commit cd781c1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"image cache",
"tilemap",
"config",
"audio"
"audio",
"i18"
],
"rust-analyzer.showUnlinkedFileNotification": false,
"rust-analyzer.cargo.extraEnv": {
Expand Down
1 change: 0 additions & 1 deletion src/cache/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

use crate::prelude::*;
use core::ops::{Deref, DerefMut};
use dashmap::DashMap;

#[derive(Default, Debug)]
pub struct Cache {
Expand Down
2 changes: 2 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
// Program grant you additional permission to convey the resulting work.
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release

use luminol::fl;

fn main() {
#[cfg(feature = "steamworks")]
if let Err(e) = luminol::steam::Steamworks::setup() {
Expand Down
2 changes: 2 additions & 0 deletions src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,5 @@ pub use rmxp_types::*;

#[cfg(feature = "steamworks")]
pub use crate::steam::Steamworks;

pub use crate::fl;
1 change: 0 additions & 1 deletion src/windows/script_edit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
// terms of the Steamworks API by Valve Corporation, the licensors of this
// Program grant you additional permission to convey the resulting work.

use crate::fl;
pub use crate::prelude::*;

/// The script editor.
Expand Down

0 comments on commit cd781c1

Please sign in to comment.