From 5ca1d67781977f3942dc73da6c9b37ddcf27e0b4 Mon Sep 17 00:00:00 2001 From: Yohei Shimmyo Date: Mon, 16 Jul 2018 05:29:12 +0000 Subject: [PATCH] fix a problem that sample games wouldn't launch Add header '#include "hsp3dish.as"' to the source codes. That fixed a problem that the programs of `sample/game/*.hsp` wouldn't launch because of lack of a header. Error message: ``` Execute from __hsptmp.ax runtime[hsp3](2). sh: 1: /home/pi/Documents/ome/OpenHSP/./hsp3: not found hsed: Process end 127. ``` --- OpenHSP/sample/game/kakiget.hsp | 2 ++ OpenHSP/sample/game/landing.hsp | 2 ++ OpenHSP/sample/game/star_liner.hsp | 2 ++ 3 files changed, 6 insertions(+) diff --git a/OpenHSP/sample/game/kakiget.hsp b/OpenHSP/sample/game/kakiget.hsp index bfc9fdb..f03ae56 100644 --- a/OpenHSP/sample/game/kakiget.hsp +++ b/OpenHSP/sample/game/kakiget.hsp @@ -1,3 +1,5 @@ +#include "hsp3dish.as" + ;Kaki Get! dim kx,32 :dim ky,32 diff --git a/OpenHSP/sample/game/landing.hsp b/OpenHSP/sample/game/landing.hsp index 74b9bbc..22ed852 100644 --- a/OpenHSP/sample/game/landing.hsp +++ b/OpenHSP/sample/game/landing.hsp @@ -1,3 +1,5 @@ +#include "hsp3dish.as" + ;Landing Game dim map,768 diff --git a/OpenHSP/sample/game/star_liner.hsp b/OpenHSP/sample/game/star_liner.hsp index ccca2c6..ee027a2 100644 --- a/OpenHSP/sample/game/star_liner.hsp +++ b/OpenHSP/sample/game/star_liner.hsp @@ -1,3 +1,5 @@ +#include "hsp3dish.as" + ; Star Liner m=50 -- GitLab