79557369

Date: 2025-04-05 18:36:42
Score: 0.5
Natty:
Report link

You could print out the path where the executable is looking for the assets. For example.

use std::os;

fn main() {
    let p = os::getcwd();
    println!("{}", p.display());
}

Then, either change the path in the program to be the one you want, or move the assets to the path where it's looking.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jaybird