Skip to content

Commit

Permalink
UPBGE: Fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
youle31 committed Jan 22, 2025
1 parent 59a7221 commit bd796df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/blender/windowmanager/intern/wm_window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,8 @@ void WM_window_title(wmWindowManager *wm, wmWindow *win, const char *title)
win_title.append(fmt::format(" [{}]", filepath));
}

win_title.append(fmt::format(" - UPBGE {}", BKE_upbge_version_string()));
win_title.append(fmt::format(" - UPBGE {}", BKE_upbge_version_string_compact()));
win_title.append(fmt::format(" based on Blender {}", BKE_blender_version_string_compact()));

GHOST_SetTitle(handle, win_title.c_str());

Expand Down

0 comments on commit bd796df

Please sign in to comment.