diff options
author | James Rowe <jroweboy@gmail.com> | 2019-01-21 18:28:32 +0100 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2019-01-21 18:28:32 +0100 |
commit | 3049ea45d3f1621e48714022a195f6a2971dce56 (patch) | |
tree | a0fc21fcf2d49ff81938f0463cf3a5da4dcd3184 /src | |
parent | Fix mingw compile error and warnings (diff) | |
download | yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.tar yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.tar.gz yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.tar.bz2 yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.tar.lz yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.tar.xz yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.tar.zst yuzu-3049ea45d3f1621e48714022a195f6a2971dce56.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/loading_screen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/loading_screen.cpp b/src/yuzu/loading_screen.cpp index 8ac7f5059..907aac4f1 100644 --- a/src/yuzu/loading_screen.cpp +++ b/src/yuzu/loading_screen.cpp @@ -30,11 +30,11 @@ #include <QMovie> #endif -constexpr const char* PROGRESSBAR_STYLE_PREPARE = R"( +constexpr const char PROGRESSBAR_STYLE_PREPARE[] = R"( QProgressBar {} QProgressBar::chunk {})"; -constexpr const char* PROGRESSBAR_STYLE_DECOMPILE = R"( +constexpr const char PROGRESSBAR_STYLE_DECOMPILE[] = R"( QProgressBar { background-color: black; border: 2px solid white; @@ -45,7 +45,7 @@ QProgressBar::chunk { background-color: #0ab9e6; })"; -constexpr const char* PROGRESSBAR_STYLE_BUILD = R"( +constexpr const char PROGRESSBAR_STYLE_BUILD[] = R"( QProgressBar { background-color: black; border: 2px solid white; @@ -56,7 +56,7 @@ QProgressBar::chunk { background-color: #ff3c28; })"; -constexpr const char* PROGRESSBAR_STYLE_COMPLETE = R"( +constexpr const char PROGRESSBAR_STYLE_COMPLETE[] = R"( QProgressBar { background-color: #0ab9e6; border: 2px solid white; |