pixeltris / SonyAlphaUSB

Control Sony Alpha cameras using the USB connection (Windows)
43 stars 5 forks source link

GetFNumber #2

Open ag-wsd opened 5 years ago

ag-wsd commented 5 years ago

Hi, thank you for your work. I found a lot of interesting here.

I found a possible issue in SonyCamera class and GetFNumber method: public int GetFNumber() { CameraSetting setting = GetSetting(SettingIds.LiveViewState); return setting != null ? setting.Value : 0; }

I think there should be public int GetFNumber() { CameraSetting setting = GetSetting(SettingIds.FNumber); return setting != null ? setting.Value : 0; }

Thanks!

pixeltris commented 5 years ago

Oh yea, good catch! I'll fix that soon.