Skip to content

Commit

Permalink
wut
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Sep 11, 2023
1 parent cb5a8a4 commit 2613224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/asset/processing/processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ impl AssetLoader for TextLoader {
} else {
String::from_utf8(bytes).unwrap()
};
Ok(Text(value))
Ok(Text(dbg!(value)))
})
}

Expand Down Expand Up @@ -153,7 +153,7 @@ impl AssetLoader for CoolTextLoader {
base_text.push_str(&text.0);
}
Ok(CoolText {
text: base_text,
text: dbg!(base_text),
dependencies: ron
.dependencies
.iter()
Expand Down

0 comments on commit 2613224

Please sign in to comment.