From: sparky4 Date: Tue, 26 Apr 2016 19:51:25 +0000 (-0500) Subject: added some notes ^^ X-Git-Url: http://4ch.mooo.com/gitweb/?a=commitdiff_plain;h=c34e891c7e3d48fa1bb136005e7c7567d410ed76;p=16.git added some notes ^^ --- diff --git a/pcx2vrl b/pcx2vrl index 3d9ac6e6..bd947e55 100755 Binary files a/pcx2vrl and b/pcx2vrl differ diff --git a/pcxsscut b/pcxsscut index d743ac3b..1deec74d 100755 Binary files a/pcxsscut and b/pcxsscut differ diff --git a/setvars.sh b/setvars.sh new file mode 100755 index 00000000..f8fefd15 --- /dev/null +++ b/setvars.sh @@ -0,0 +1,53 @@ +#!/bin/sh +# ***************************************************************** +# setvars - Linux version +# ***************************************************************** +# NOTE: Do not use this script directly, but copy it and +# modify it as necessary for your own use!! + +# Change this to point your Open Watcom source tree +export OWROOT=/home/sparky4/p/watcom2 + +# Subdirectory to be used for building OW build tools +export OWOBJDIR=binbuild + +# Set this entry to identify your toolchain used by build process +# supported values are WATCOM GCC CLANG +#export OWTOOLS=WATCOM +export OWTOOLS=GCC + +# Documentation related variables + +# Set this variable to 0 to suppress documentation build +export OWDOCBUILD=0 + +# Change this to the PATH required by GhostScript for PDF creation on used host OS (optional) +# export OWGHOSTSCRIPTPATH=$PATH + +# Set appropriate variables to point to Windows help compilers which you +# have installed +# +# OWWIN95HC specifies the Microsoft compiler used to build 32-bit ".hlp" +# files, common on Win 95/98/ME +# OWHHC specifies the Microsoft HTML Help Workshop compiler used to build +# Compressed HTML help ".chm" files, common on Win2k and later +# OWCHMCMD specifies the Free Pascal HTML Help compiler, an alternative +# compiler that can also build Compressed HTML help ".chm" files, +# available natively on non-Windows OSes +#export OWWIN95HC=hcrtf +#export OWHHC=hhc +#export OWCHMCMD=chmcmd + +# build process requires WGML utility which is available only as DOS executable +# it is necessary to have some DOS emulator installed +# DOSBOX emulator is available on most platforms +# DOSEMU emulator is available on Linux (Intel platform) +# if DOSBOX emulator is used then OWDOSBOX variable must be set +# Uncoment and set OWDOSBOX variable bellow to point to DOSBOX emulator executable + +export OWDOSBOX=dosbox + +# Invoke the script for the common environment +. $OWROOT/cmnvars.sh + +#cd $OWROOT diff --git a/src/lib/scroll16.c b/src/lib/scroll16.c index 42a787ae..752c6abc 100755 --- a/src/lib/scroll16.c +++ b/src/lib/scroll16.c @@ -587,6 +587,7 @@ void mapDrawWCol(map_view_t *mv, int tx, int ty, word x) }*/ unsigned char shinku_fps_indicator_page = 0; +//gv->video.p /* sync */ void shinku(global_game_variables_t *gv) diff --git a/src/lib/typdefst.h b/src/lib/typdefst.h index 25a49196..8ee28a5c 100755 --- a/src/lib/typdefst.h +++ b/src/lib/typdefst.h @@ -106,6 +106,7 @@ typedef struct page_t page[4]; //pointer to root page[0] dword vmem_remain; //remaining video memory byte num_of_pages; //number of actual pages + boolean p; //render page number } video_t; typedef struct diff --git a/vrl2vrs b/vrl2vrs index acdd4bda..b67956b7 100755 Binary files a/vrl2vrs and b/vrl2vrs differ diff --git a/vrsdump b/vrsdump index 8ba0497d..dbaba30e 100755 Binary files a/vrsdump and b/vrsdump differ