Rename ProcureCurrentEmulationCourseInformation to GetEmulationIdentifier

This is much easier to understand in my opinion.
The old name just made me scratch my head whenever I read it.
This commit is contained in:
Megamouse 2023-06-05 23:54:53 +02:00
parent fcd6be71b0
commit 3f5bc3464d
3 changed files with 6 additions and 5 deletions

View file

@ -2204,7 +2204,7 @@ void Emulator::FinalizeRunRequest()
if (m_savestate_extension_flags1 & SaveStateExtentionFlags1::ShouldCloseMenu)
{
std::thread([this, info = ProcureCurrentEmulationCourseInformation()]()
std::thread([this, info = GetEmulationIdentifier()]()
{
std::this_thread::sleep_for(2s);
@ -2451,7 +2451,7 @@ void Emulator::GracefulShutdown(bool allow_autoexit, bool async_op, bool savesta
return;
}
auto perform_kill = [read_counter, allow_autoexit, this, info = ProcureCurrentEmulationCourseInformation()]()
auto perform_kill = [read_counter, allow_autoexit, this, info = GetEmulationIdentifier()]()
{
bool read_sysutil_signal = false;