Skip to content

Commit

Permalink
small push
Browse files Browse the repository at this point in the history
  • Loading branch information
Spuckwaffel committed Apr 16, 2024
1 parent b232903 commit 5a60531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UEDumper/Frontend/Windows/HelloWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bool windows::HelloWindow::render()
if (alreadyCompleted) return true;

bool bUserKnowsWhatTheyAreDoing = true;
for (auto& offset : setOffsets()) {
for (const auto& offset : setOffsets()) {
if (offset.offset == SHOW_README_IF_OFFSETS_ARE_VALUE) {
bUserKnowsWhatTheyAreDoing = false;
break;
Expand Down Expand Up @@ -62,7 +62,7 @@ bool windows::HelloWindow::render()
if (!bUserKnowsWhatTheyAreDoing)
{
ImGui::SetCursorPosY(70);
ImGui::TextColored(IGHelper::Colors::white, "Hi there! Looks like you're new to this.");
ImGui::TextColored(IGHelper::Colors::white, "Hi there! Looks like you're new to this tool.");
ImGui::TextColored(IGHelper::Colors::red, "The tool DOES NOT WORK OUT OF THE BOX!");
ImGui::TextColored(IGHelper::Colors::white, "Please read the included README.md file to proceed.");
ImGui::EndChild();
Expand Down

0 comments on commit 5a60531

Please sign in to comment.