diff --git a/src/qt/bitcoin.qrc b/src/qt/bitcoin.qrc index 61e9c4be..a9715136 100644 --- a/src/qt/bitcoin.qrc +++ b/src/qt/bitcoin.qrc @@ -47,6 +47,7 @@ res/images/about.png res/images/splash.png res/images/splash_testnet.png + res/images/primecoin.splash.png res/movies/update_spinner.mng diff --git a/src/qt/res/images/primecoin.splash.png b/src/qt/res/images/primecoin.splash.png new file mode 100644 index 00000000..40462ff3 Binary files /dev/null and b/src/qt/res/images/primecoin.splash.png differ diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 14d1ce78..b7f1d78c 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -29,10 +29,10 @@ SplashScreen::SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f) : // load the bitmap for writing some text over it QPixmap newPixmap; if(GetBoolArg("-testnet")) { - newPixmap = QPixmap(":/images/splash_testnet"); + newPixmap = QPixmap(":/images/splash_primecoin"); } else { - newPixmap = QPixmap(":/images/splash"); + newPixmap = QPixmap(":/images/splash_primecoin"); } QPainter pixPaint(&newPixmap);