From 950f780b8106a43074327be0c341b9bb1617ca9c Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 16 Mar 2014 20:44:27 -0700 Subject: [PATCH] Make sure ot use the right enum name Microsoft's garbage compiler just doesn't even.. read the names of enums. It sees an enum and goes "durr, that's an int" without even properly evaluating it. Just total garbage, as per usual. --- libobs/obs-data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs/obs-data.c b/libobs/obs-data.c index 19832ecb9..bbda77e21 100644 --- a/libobs/obs-data.c +++ b/libobs/obs-data.c @@ -666,7 +666,7 @@ enum obs_data_type obs_data_item_gettype(obs_data_item_t item) return item ? item->type : OBS_DATA_NULL; } -enum obs_data_num_type obs_data_item_numtype(obs_data_item_t item) +enum obs_data_number_type obs_data_item_numtype(obs_data_item_t item) { struct obs_data_number *num;