SaveTool: change how story progress is handled.

This commit is contained in:
Guillaume Jacquemin 2022-01-15 10:48:49 +01:00
parent 51602c713a
commit 9a9c08391a
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ struct StoryProgressPoint {
Int id;
const char* chapter;
const char* point;
const char* after = "";
const char* after = nullptr;
};
static const Corrade::Containers::Array<StoryProgressPoint> story_progress

View File

@ -188,7 +188,7 @@ void SaveTool::drawGeneralInfo() {
{
ImGui::TextUnformatted("Story progress:");
ImGui::SameLine(0.0f, ImGui::GetStyle().ItemSpacing.x / 4.0f);
if(std::strcmp(it->after, "") == 0) {
if(!it->after) {
ImGui::TextWrapped("%s - %s", it->chapter, it->point);
}
else {
@ -261,7 +261,7 @@ void SaveTool::drawGeneralInfo() {
}
for(const auto& sp : story_progress) {
if(ImGui::BeginMenu(sp.chapter)) {
if(std::strcmp(sp.after, "") == 0) {
if(!sp.after) {
if(ImGui::MenuItem(sp.point)) {
if(!_currentProfile->setStoryProgress(sp.id)) {
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Error",