Skip to content

Commit

Permalink
CI stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed Jun 11, 2024
1 parent f69004a commit ef9d337
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions source/g_wolf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ bool wolf_game_interface_c::Start(const char *ext)
switch (result)
{
case -1:
LogPrintf(_("Error choosing directory:\n"));
LogPrintf("%s\n", _("Error choosing directory:"));
LogPrintf(" %s\n", chooser.errmsg());
break;

Expand All @@ -446,7 +446,7 @@ bool wolf_game_interface_c::Start(const char *ext)

if (dir_name.empty())
{
LogPrintf(_("Empty directory provided???:\n"));
LogPrintf("%s\n",_("Empty directory provided???"));
dir_name = Resolve_DefaultOutputPath();
}

Expand Down
2 changes: 2 additions & 0 deletions source/lib_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
#ifdef __MINGW32__
#include <sys/stat.h>
#endif

#include <algorithm>
#include <chrono>

#include "grapheme.h"
Expand Down
2 changes: 1 addition & 1 deletion source/m_dialog.cc
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ std::string DLG_OutputFilename(const char *ext, const char *preset)
switch (result)
{
case -1:
LogPrintf(_("Error choosing output file:\n"));
LogPrintf("%s\n", _("Error choosing output file:"));
LogPrintf(" %s\n", chooser.errmsg());

DLG_ShowError(_("Unable to create the file:\n\n%s"), chooser.errmsg());
Expand Down
4 changes: 2 additions & 2 deletions source/m_manage.cc
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ class UI_Manage_Config : public Fl_Double_Window
switch (chooser.show())
{
case -1:
LogPrintf(_("Error choosing save file:\n"));
LogPrintf("%s\n", _("Error choosing save file:"));
LogPrintf(" %s\n", chooser.errmsg());

DLG_ShowError(_("Unable to save the file:\n\n%s"), chooser.errmsg());
Expand Down Expand Up @@ -489,7 +489,7 @@ class UI_Manage_Config : public Fl_Double_Window
switch (chooser.show())
{
case -1:
LogPrintf(_("Error choosing load file:\n"));
LogPrintf("%s\n", _("Error choosing load file:"));
LogPrintf(" %s\n", chooser.errmsg());

DLG_ShowError(_("Unable to load the file:\n\n%s"), chooser.errmsg());
Expand Down
4 changes: 2 additions & 2 deletions source/m_options.cc
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ class UI_OptionsWin : public Fl_Window
switch (result)
{
case -1:
LogPrintf(_("Error choosing directory:\n"));
LogPrintf("%s\n", _("Error choosing directory:"));
LogPrintf(" %s\n", chooser.errmsg());

return;
Expand All @@ -603,7 +603,7 @@ class UI_OptionsWin : public Fl_Window

if (dir_name.empty())
{
LogPrintf(_("Empty default directory provided???:\n"));
LogPrintf("%s\n", _("Empty default directory provided???"));
return;
}

Expand Down

0 comments on commit ef9d337

Please sign in to comment.