Fix gcc-4.7 -Wmissing-braces warning

This commit is contained in:
Kp 2014-12-15 03:59:15 +00:00
parent b0b2704961
commit 4af33f12a4

View file

@ -94,7 +94,7 @@ public:
// Movielib data
static const array<array<char, 8>, 3> movielib_files{"intro", "other", "robots"};
static const array<array<char, 8>, 3> movielib_files{{{"intro"}, {"other"}, {"robots"}}};
struct loaded_movie_t
{
array<char, FILENAME_LEN + 2> filename;