Primecoin: Update splash screen image

master
Sunny King 2013-07-05 00:01:23 +01:00
parent 5ba5071b4a
commit b6133a7351
3 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@
<file alias="about">res/images/about.png</file>
<file alias="splash">res/images/splash.png</file>
<file alias="splash_testnet">res/images/splash_testnet.png</file>
<file alias="splash_primecoin">res/images/primecoin.splash.png</file>
</qresource>
<qresource prefix="/movies">
<file alias="update_spinner">res/movies/update_spinner.mng</file>

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

View File

@ -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);