mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 20:14:45 +00:00
implement vinicius' reviews
This commit is contained in:
parent
49253fa92a
commit
5990868355
2 changed files with 1 additions and 5 deletions
|
@ -11,7 +11,6 @@ using namespace ImGui;
|
|||
using namespace Libraries::NpTrophy;
|
||||
|
||||
TrophyUI::TrophyUI() {
|
||||
first_render = true;
|
||||
AddLayer(this);
|
||||
}
|
||||
|
||||
|
@ -68,10 +67,8 @@ void TrophyUI::Draw() {
|
|||
ImGuiWindowFlags_NoInputs)) {
|
||||
Text("Trophy earned!");
|
||||
TextWrapped(currentTrophyInfo.trophyName.c_str());
|
||||
|
||||
End();
|
||||
}
|
||||
End();
|
||||
}
|
||||
}
|
||||
first_render = false;
|
||||
}
|
|
@ -20,7 +20,6 @@ struct TrophyInfo {
|
|||
};
|
||||
|
||||
class TrophyUI final : public ImGui::Layer {
|
||||
bool first_render{false};
|
||||
std::vector<TrophyInfo> trophyQueue;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Reference in a new issue