diff --git a/src/xenia/app/emulator_window.cc b/src/xenia/app/emulator_window.cc index 0e403d195..668c30db3 100644 --- a/src/xenia/app/emulator_window.cc +++ b/src/xenia/app/emulator_window.cc @@ -40,7 +40,15 @@ EmulatorWindow::EmulatorWindow(Emulator* emulator) : emulator_(emulator), loop_(ui::Loop::Create()), window_(ui::Window::Create(loop_.get(), kBaseTitle)) { - base_title_ = kBaseTitle + L" (" + xe::to_wstring(XE_BUILD_BRANCH) + L"/" + + base_title_ = kBaseTitle + +#ifdef DEBUG +#if _NO_DEBUG_HEAP == 1 + L" DEBUG" + +#else + L" CHECKED" + +#endif +#endif + L" (" + xe::to_wstring(XE_BUILD_BRANCH) + L"/" + xe::to_wstring(XE_BUILD_COMMIT_SHORT) + L"/" + xe::to_wstring(XE_BUILD_DATE) + L")"; }