Fix: build error with MSVC

Reviewed By: Brecht

Differential Revision: https://developer.blender.org/D5381
This commit is contained in:
Ray molenkamp 2019-07-31 08:44:58 -06:00
parent 0b2cb96725
commit f5f3003874
1 changed files with 8 additions and 8 deletions

View File

@ -79,20 +79,20 @@ const UserDef U_default = {
.app_template = "",
/** Initialized by #UI_theme_init_default. */
.themes = (ListBase){NULL},
.themes = {NULL},
/** Initialized by #uiStyleInit. */
.uifonts = (ListBase){NULL},
.uistyles = (ListBase){NULL},
.uifonts = {NULL},
.uistyles = {NULL},
.user_keymaps = (ListBase){NULL},
.user_keyconfig_prefs = (ListBase){NULL},
.user_keymaps = {NULL},
.user_keyconfig_prefs = {NULL},
/** Initialized by #BKE_blendfile_userdef_from_defaults. */
.addons = (ListBase){NULL},
.addons = {NULL},
.autoexec_paths = (ListBase){NULL},
.user_menus = (ListBase){NULL},
.autoexec_paths = {NULL},
.user_menus = {NULL},
.keyconfigstr = "blender",
.undosteps = 32,