Skip to content

Commit 568737a

Browse files
committed
update function name
1 parent e7a6784 commit 568737a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

obs-studio-server/source/nodeobs_settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3869,7 +3869,7 @@ void OBS_settings::saveGenericSettings(std::vector<SubCategory> genericSettings,
38693869
// plugins this is fine but should be avoided for plugins like mac-coreaudio
38703870
// because it will create a reconnect_thread. Triggers the following callbacks
38713871
// on the obs_source_info: get_properties, get_defaults, and get_updates.
3872-
void enumDevicesUsingDummySource(const char *source_id, const char *property_name, std::vector<ipc::value> &rval)
3872+
void getDevicesUsingDummySource(const char *source_id, const char *property_name, std::vector<ipc::value> &rval)
38733873
{
38743874
OBSDataAutoRelease settings = obs_get_source_defaults(source_id);
38753875
if (!settings) {
@@ -4134,7 +4134,7 @@ void OBS_settings::OBS_settings_getVideoDevices(void *data, const int64_t id, co
41344134
rval.push_back(ipc::value((uint32_t)0));
41354135
enumVideoDevices(rval);
41364136
#elif __APPLE__
4137-
enumDevicesUsingDummySource("macos_avcapture", "device", rval);
4137+
getDevicesUsingDummySource("macos_avcapture", "device", rval);
41384138
#endif
41394139

41404140
AUTO_DEBUG;

0 commit comments

Comments
 (0)