mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-04 14:46:09 -05:00
(API Change) Fix obs_service_gettype func name
Before: After: obs_service_gettype obs_service_get_type It seems there was an API function that was missed when we were doing our big API consistency update. Unsquishes obs_service_gettype to obs_service_get_type.
This commit is contained in:
@@ -270,7 +270,7 @@ void OBSBasicSettings::LoadServiceTypes()
|
||||
ui->streamType->addItem(qName, qType);
|
||||
}
|
||||
|
||||
type = obs_service_gettype(main->GetService());
|
||||
type = obs_service_get_type(main->GetService());
|
||||
SetComboByValue(ui->streamType, type);
|
||||
}
|
||||
|
||||
@@ -331,7 +331,7 @@ void OBSBasicSettings::LoadStream1Settings()
|
||||
{
|
||||
QLayout *layout = ui->streamContainer->layout();
|
||||
obs_service_t *service = main->GetService();
|
||||
const char *type = obs_service_gettype(service);
|
||||
const char *type = obs_service_get_type(service);
|
||||
|
||||
loading = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user