mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-05 11:44:53 +01:00
Fix crashes.
This commit is contained in:
parent
528120d102
commit
ad66573a20
2 changed files with 10 additions and 3 deletions
|
|
@ -801,11 +801,11 @@ void Steam_Overlay::OverlayProc()
|
|||
bool hidden = x.hidden && !achieved;
|
||||
|
||||
ImGui::Separator();
|
||||
ImGui::Text(x.title.c_str());
|
||||
ImGui::Text("%s", x.title.c_str());
|
||||
if (x.hidden) {
|
||||
ImGui::Text("hidden achievement");
|
||||
} else {
|
||||
ImGui::TextWrapped(x.description.c_str());
|
||||
ImGui::TextWrapped("%s", x.description.c_str());
|
||||
}
|
||||
|
||||
if (achieved) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue