@@ -180,7 +180,7 @@ static int_fast32_t xshm_update_geometry(struct xshm_data *data)
180
180
static const char * xshm_getname (void * unused )
181
181
{
182
182
UNUSED_PARAMETER (unused );
183
- return obs_module_text ("X11SharedMemoryScreenInput " );
183
+ return obs_module_text ("X11SharedMemoryDisplayInput " );
184
184
}
185
185
186
186
/**
@@ -376,8 +376,8 @@ static bool xshm_server_changed(obs_properties_t *props, obs_property_t *p,
376
376
}
377
377
378
378
dstr_printf (& screen_info ,
379
- "Screen %s (%" PRIuFAST32 "x%" PRIuFAST32
380
- " @ %" PRIuFAST32 " ,%" PRIuFAST32 ")" ,
379
+ "%s (%" PRIuFAST32 "x%" PRIuFAST32 " @ %" PRIuFAST32
380
+ ",%" PRIuFAST32 ")" ,
381
381
name , w , h , x , y );
382
382
383
383
if (name != name_tmp )
@@ -390,7 +390,7 @@ static bool xshm_server_changed(obs_properties_t *props, obs_property_t *p,
390
390
391
391
/* handle missing screen */
392
392
if (old_screen + 1 > count ) {
393
- dstr_printf (& screen_info , "Screen %" PRIuFAST32 " (not found)" ,
393
+ dstr_printf (& screen_info , "Display %" PRIuFAST32 " (not found)" ,
394
394
old_screen );
395
395
size_t index = obs_property_list_add_int (
396
396
screens , screen_info .array , old_screen );
@@ -415,7 +415,7 @@ static obs_properties_t *xshm_properties(void *vptr)
415
415
obs_properties_t * props = obs_properties_create ();
416
416
obs_property_t * prop ;
417
417
418
- obs_properties_add_list (props , "screen" , obs_module_text ("Screen " ),
418
+ obs_properties_add_list (props , "screen" , obs_module_text ("Display " ),
419
419
OBS_COMBO_TYPE_LIST , OBS_COMBO_FORMAT_INT );
420
420
obs_properties_add_bool (props , "show_cursor" ,
421
421
obs_module_text ("CaptureCursor" ));
0 commit comments