fix: Variable naming style in splash window

This commit is contained in:
WerWolv
2024-06-05 22:24:00 +02:00
parent 348fe27a3c
commit 4797512207
2 changed files with 18 additions and 18 deletions

View File

@@ -71,11 +71,11 @@ namespace hex::init {
std::string m_gpuVendor;
ImGuiExt::Texture splashBackgroundTexture;
ImGuiExt::Texture splashTextTexture;
std::future<bool> tasksSucceeded;
std::array<Highlight, 4> highlights;
float progressLerp = 0.0F;
ImGuiExt::Texture m_splashBackgroundTexture;
ImGuiExt::Texture m_splashTextTexture;
std::future<bool> m_tasksSucceeded;
std::array<Highlight, 4> m_highlights;
float m_progressLerp = 0.0F;
};
}