mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-21 20:14:45 +00:00
fix review's from last pr
This commit is contained in:
parent
0ebae4ca6f
commit
1ca7bf8331
2 changed files with 2 additions and 2 deletions
|
@ -2,13 +2,13 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include <unordered_map>
|
||||
#include <pugixml.hpp>
|
||||
|
||||
#include "common/logging/log.h"
|
||||
#include "common/path_util.h"
|
||||
#include "common/slot_vector.h"
|
||||
#include "core/libraries/error_codes.h"
|
||||
#include "core/libraries/libs.h"
|
||||
#include "externals/pugixml/src/pugixml.hpp"
|
||||
#include "np_trophy.h"
|
||||
#include "trophy_ui.h"
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ void TrophyUI::Draw() {
|
|||
ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoSavedSettings |
|
||||
ImGuiWindowFlags_NoInputs)) {
|
||||
Text("Trophy earned!");
|
||||
TextWrapped(currentTrophyInfo.trophyName.c_str());
|
||||
TextWrapped("%s", currentTrophyInfo.trophyName.c_str());
|
||||
}
|
||||
End();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue