Commit 528258c4 authored by Kevin Bracey's avatar Kevin Bracey
Browse files

Increased size of indirected data buffer for error template from 256 to 1024.

Version 4.19. Tagged as 'Wimp-4_19'
parent 30829220
......@@ -6,9 +6,9 @@
GBLS Module_MinorVersion
GBLS Module_Date
GBLS Module_FullVersion
Module_MajorVersion SETS "4.18"
Module_Version SETA 418
Module_MajorVersion SETS "4.19"
Module_Version SETA 419
Module_MinorVersion SETS ""
Module_Date SETS "28 Apr 1999"
Module_FullVersion SETS "4.18"
Module_Date SETS "29 Apr 1999"
Module_FullVersion SETS "4.19"
END
/* (4.18)
/* (4.19)
*
* This file is automatically maintained by srccommit, do not edit manually.
*
*/
#define Module_MajorVersion_CMHG 4.18
#define Module_MajorVersion_CMHG 4.19
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 28 Apr 1999
#define Module_Date_CMHG 29 Apr 1999
#define Module_MajorVersion "4.18"
#define Module_Version 418
#define Module_MajorVersion "4.19"
#define Module_Version 419
#define Module_MinorVersion ""
#define Module_Date "28 Apr 1999"
#define Module_Date "29 Apr 1999"
#define Module_FullVersion "4.18"
#define Module_FullVersion "4.19"
......@@ -1314,8 +1314,6 @@ keyprocess_buffer # 256 ; for queuing multiple key-originating W
ALIGNHASH 64
[ NewErrorSystem
errortitle # 256 ; for building up 'Error from ...'
errortitend # 0
errorbuttonsize * 256
errorbuttons # errorbuttonsize ; this is used to copy button labels
buttontextsize * 24
......@@ -1342,9 +1340,6 @@ errmess_maxlines * 7 ; maximum number of lines to allow for e
errmess_increment * 48 ; step size (in OS units) to increase error box size by when enlarging
]
maxno_error_buttons * 8 ; maximum number of action buttons (needs this many Additional buttons in template)
|
errortitle # 128 ; old versions have smaller template file
errortitend # 0
]
paltable # 4 * 16 ; one word per colour
......@@ -1439,6 +1434,9 @@ inverselookup # 1024 ; what colour numbers to use when EOR'in
path_buffer # 1024 ; for building Sprites<x><y> pathnames
errortitle # 1024 ; for building up 'Error from ...'
errortitend # 0
ALIGNHASH 4
......
......@@ -420,7 +420,7 @@ initfirsttask
CMP R0,#0
BGT %FT01
ADR R0,wn_error
ADR R2,errortitle ; indirected icons go in [errortitle]
ADRL R2,errortitle ; indirected icons go in [errortitle]
ADRL R3,errortitend ; (assume title is first icon)
BL createsystemp
STRVC R0,errorhandle
......
......@@ -2237,10 +2237,10 @@ starterrorbox_draw
01
;
MOV R3,#?errortitle
ADR R2,errortitle ; -> title string for dialogue box
ADRL R2,errortitle ; -> title string for dialogue box
BL LookupToken
;
ADR R2,errortitle
ADRL R2,errortitle
;
DebugS err,"errortitle=",R2
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment