mirror of
https://git.citron-emu.org/citron/emulator
synced 2025-12-28 14:23:36 +00:00
chore: update project branding to CITRON
Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
|
||||
// Mingw seems to not have QMovie at all. If QMovie is missing then use a single frame instead of an
|
||||
// showing the full animation
|
||||
#if !YUZU_QT_MOVIE_MISSING
|
||||
#if !CITRON_QT_MOVIE_MISSING
|
||||
#include <QMovie>
|
||||
#endif
|
||||
|
||||
@@ -96,7 +96,7 @@ LoadingScreen::~LoadingScreen() = default;
|
||||
void LoadingScreen::Prepare(Loader::AppLoader& loader) {
|
||||
std::vector<u8> buffer;
|
||||
if (loader.ReadBanner(buffer) == Loader::ResultStatus::Success) {
|
||||
#ifdef YUZU_QT_MOVIE_MISSING
|
||||
#ifdef CITRON_QT_MOVIE_MISSING
|
||||
QPixmap map;
|
||||
map.loadFromData(buffer.data(), buffer.size());
|
||||
ui->banner->setPixmap(map);
|
||||
@@ -194,7 +194,7 @@ void LoadingScreen::paintEvent(QPaintEvent* event) {
|
||||
}
|
||||
|
||||
void LoadingScreen::Clear() {
|
||||
#ifndef YUZU_QT_MOVIE_MISSING
|
||||
#ifndef CITRON_QT_MOVIE_MISSING
|
||||
animation.reset();
|
||||
backing_buf.reset();
|
||||
backing_mem.reset();
|
||||
|
||||
Reference in New Issue
Block a user