UI Para visor de memoria

This commit is contained in:
2025-06-27 00:58:05 -04:00
parent f469e3d27b
commit 95b1fb3b43
6 changed files with 137 additions and 2 deletions

View File

@@ -40,5 +40,5 @@ void RomInfo::on_rom_load(const std::string& rom_path)
std::filesystem::path home = SDL_GetUserFolder(SDL_FOLDER_HOME);
std::filesystem::path path = rom_path;
this->rom_path = std::filesystem::relative(path, home).string();
this->rom_path = "~/" + std::filesystem::relative(path, home).string();
}