OSDN Git Service

Merge pull request #1192 from hengband/feature/3.0.0Alpha26
[hengbandforosx/hengbandosx.git] / src / cmd-io / cmd-help.cpp
1 #include "cmd-io/cmd-help.h"
2 #include "core/show-file.h"
3 #include "system/player-type-definition.h"
4 #include "term/screen-processor.h"
5
6 /*!
7  * @brief ヘルプを表示するコマンドのメインルーチン
8  * Peruse the On-Line-Help
9  * @param creature_ptr プレーヤーへの参照ポインタ
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 }