mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
Utils: Minor nitpick
This commit is contained in:
@ -102,7 +102,7 @@ std::string Utils::Obs::StringHelper::GetLastReplayBufferFilePath()
|
|||||||
calldata_t cd = {0};
|
calldata_t cd = {0};
|
||||||
proc_handler_t *ph = obs_output_get_proc_handler(output);
|
proc_handler_t *ph = obs_output_get_proc_handler(output);
|
||||||
proc_handler_call(ph, "get_last_replay", &cd);
|
proc_handler_call(ph, "get_last_replay", &cd);
|
||||||
std::string ret = calldata_string(&cd, "path");
|
auto ret = calldata_string(&cd, "path");
|
||||||
calldata_free(&cd);
|
calldata_free(&cd);
|
||||||
obs_output_release(output);
|
obs_output_release(output);
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user