aboutsummaryrefslogtreecommitdiffstats
path: root/nihav-game/src
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2020-02-20 18:32:38 +0100
committerKostya Shishkov <kostya.shishkov@gmail.com>2020-02-20 18:32:38 +0100
commit1acf07374174f1084c31138f2f0a6ec916c7f8e8 (patch)
tree06c186013d054df57bf9d9d82851228b76aecbfd /nihav-game/src
parent32f7cbe538d71574f7ac05aa51599d2678f5db3f (diff)
downloadnihav-1acf07374174f1084c31138f2f0a6ec916c7f8e8.tar.gz
fix re-exports of crate submodules
Diffstat (limited to 'nihav-game/src')
-rw-r--r--nihav-game/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/nihav-game/src/lib.rs b/nihav-game/src/lib.rs
index a91da7b..f2a94f9 100644
--- a/nihav-game/src/lib.rs
+++ b/nihav-game/src/lib.rs
@@ -2,6 +2,6 @@ extern crate nihav_core;
extern crate nihav_codec_support;
mod codecs;
-pub use codecs::game_register_all_codecs;
+pub use crate::codecs::game_register_all_codecs;
mod demuxers;
-pub use demuxers::game_register_all_demuxers; \ No newline at end of file
+pub use crate::demuxers::game_register_all_demuxers; \ No newline at end of file