We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25badf9 commit d396a77Copy full SHA for d396a77
rpcs3/Emu/RSX/RSXThread.cpp
@@ -3073,7 +3073,7 @@ namespace rsx
3073
{
3074
capture_current_frame = false;
3075
3076
- std::string file_path = fs::get_config_dir() + "captures/" + Emu.GetTitleID() + "_" + date_time::current_time_narrow() + "_capture.rrc.gz";
+ const std::string file_path = fs::get_config_dir() + "captures/" + (Emu.GetTitleID().empty() ? Emu.GetTitle() : Emu.GetTitleID()) + "_" + date_time::current_time_narrow() + "_capture.rrc.gz";
3077
3078
fs::pending_file temp(file_path);
3079
0 commit comments