DolphinQt: cache filesystem icons for speed

This commit is contained in:
Tillmann Karras
2019-02-01 00:13:50 +00:00
parent e79f37ceac
commit 5b4a5ca059
2 changed files with 9 additions and 2 deletions

View File

@ -5,6 +5,7 @@
#pragma once
#include <QDialog>
#include <QIcon>
#include <memory>
#include "UICommon/GameFile.h"
@ -53,4 +54,7 @@ private:
UICommon::GameFile m_game;
std::unique_ptr<DiscIO::Volume> m_volume;
QIcon m_folder_icon;
QIcon m_file_icon;
};