diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-23 09:42:09 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-23 09:42:09 +0800 |
| commit | f9fa7d65d775959efbc9609ccafd1fdce76129e4 (patch) | |
| tree | 111fc1933cfbe4bdc4e82207f53b6c1b74cc35e3 /src/systems/cmd | |
| parent | aee17b68b2b213553cd06406a3a5713ec91f374d (diff) | |
Add localization and refactor status command output
Diffstat (limited to 'src/systems/cmd')
| -rw-r--r-- | src/systems/cmd/renderer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systems/cmd/renderer.rs b/src/systems/cmd/renderer.rs index bdd702d..1849ee9 100644 --- a/src/systems/cmd/renderer.rs +++ b/src/systems/cmd/renderer.rs @@ -42,13 +42,13 @@ impl JVRenderResult { #[macro_export] macro_rules! r_print { ($result:expr, $($arg:tt)*) => { - $result.print(&format!($($arg)*)); + $result.print(&format!($($arg)*)) }; } #[macro_export] macro_rules! r_println { ($result:expr, $($arg:tt)*) => { - $result.println(&format!($($arg)*)); + $result.println(&format!($($arg)*)) }; } |
