Homepage Forums RetroPie Project Everything else related to the RetroPie Project Emulation station crashes, where are the log files? Reply To: Emulation station crashes, where are the log files?

#98080
dayfather
Participant

hmmm the code tag seems to be broken.

Error was:
emulationstation: /home/pi/RetroPie-Setup/tmp/build/emulationstation/es-core/src/resources/Font.cpp:129: static UnicodeChar Font::readUnicodeChar(const string&, std:size_t&): Assertation ‘(c & 0xC0) != 0x80’ failed

/usr/bin/emulationstation: line 16: 479 Aborted $es_bin “$@”

Script to remove non-ASCII characters was:
find /home/osmc/RetroPie/roms/megadrive -type f -print0 | \
perl -n0e ‘$new = $_; if($new =~ s/[^[:ascii:]]/_/g) {
print(“Renaming $_ to $new\n”); rename($_, $new);
}’