You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slashes in file-path string gives error on windows. Using std::path::Path should make it viable cross-platform.
(Note that I've only tested this on windows)
Former-commit-id: 06d0cd2
The error looks as follow:
I'm think the error is because of this line:
foxtrot/src/world_interaction/dialog.rs
Line 50 in 683ae51
The problem is probably that windows use slashes for path separators.
Suggested solution:
Fix windows, or it that fails maybe try a
std::path::Path
instead of format string with a slash in it.maybe something along the lines of:
The text was updated successfully, but these errors were encountered: