OSDN Git Service

Merge commit 'remotes/origin/feature/Fix-BufferOverRun-spoil_out' into Feature/Versio...
[hengband/hengband.git] / src / cmd-io / cmd-help.c
1 #include "cmd-io/cmd-help.h"
2 #include "core/show-file.h"
3 #include "term/screen-processor.h"
4
5 /*!
6  * @brief ヘルプを表示するコマンドのメインルーチン
7  * Peruse the On-Line-Help
8  * @param creature_ptr プレーヤーへの参照ポインタ
9  * @return なし
10  * @details
11  */
12 void do_cmd_help(player_type *creature_ptr)
13 {
14         screen_save();
15         (void)show_file(creature_ptr, TRUE, _("jhelp.hlp", "help.hlp"), NULL, 0, 0);
16         screen_load();
17 }