Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/dos/program_loadfix.cpp')
-rw-r--r--src/dos/program_loadfix.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dos/program_loadfix.cpp b/src/dos/program_loadfix.cpp
index 88889ef38..fe098822e 100644
--- a/src/dos/program_loadfix.cpp
+++ b/src/dos/program_loadfix.cpp
@@ -21,13 +21,16 @@
#include "program_loadfix.h"
#include "dosbox.h"
+#include "program_more_output.h"
#include "shell.h"
#include "string_utils.h"
void LOADFIX::Run(void)
{
if (HelpRequested()) {
- WriteOut(MSG_Get("PROGRAM_LOADFIX_HELP_LONG"));
+ MoreOutputStrings output(*this);
+ output.AddString(MSG_Get("PROGRAM_LOADFIX_HELP_LONG"));
+ output.Display();
return;
}
uint16_t commandNr = 1;