mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-13 04:12:21 -06:00
feat: fix emscripten browser logging, streamline console initialization and logging
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
//! Platform abstraction layer for cross-platform functionality.
|
||||
pub mod buffered_writer;
|
||||
pub mod tracing_buffer;
|
||||
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
pub mod buffered_writer;
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
mod desktop;
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
pub mod tracing_buffer;
|
||||
#[cfg(not(target_os = "emscripten"))]
|
||||
pub use desktop::*;
|
||||
|
||||
#[cfg(target_os = "emscripten")]
|
||||
|
||||
Reference in New Issue
Block a user