1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 09:20:38 +00:00

Automatic update of ./internal/source

This commit is contained in:
github-actions[bot] 2022-06-04 10:44:40 +00:00
parent f1464252d8
commit 3816f39bb9
4 changed files with 1353 additions and 1313 deletions

View file

@ -93,6 +93,7 @@ __STRING_CACHE_FOLDER->len=0;
*__LONG_HELP_SELY1=0;
*__LONG_HELP_SELY2=0;
*__LONG_HELP_MSELECT=0;
*__LONG_HELP_CHKBLANK=0;
*__LONG_HELP_WX1=0;
*__LONG_HELP_WY1=0;
*__LONG_HELP_WX2=0;

View file

@ -60,6 +60,7 @@ int32 *__LONG_HELP_SELX2=NULL;
int32 *__LONG_HELP_SELY1=NULL;
int32 *__LONG_HELP_SELY2=NULL;
int32 *__LONG_HELP_MSELECT=NULL;
int32 *__LONG_HELP_CHKBLANK=NULL;
int32 *__LONG_HELP_WX1=NULL;
int32 *__LONG_HELP_WY1=NULL;
int32 *__LONG_HELP_WX2=NULL;

File diff suppressed because it is too large Load diff

View file

@ -165,6 +165,10 @@ if(__LONG_HELP_MSELECT==NULL){
__LONG_HELP_MSELECT=(int32*)mem_static_malloc(4);
*__LONG_HELP_MSELECT=0;
}
if(__LONG_HELP_CHKBLANK==NULL){
__LONG_HELP_CHKBLANK=(int32*)mem_static_malloc(4);
*__LONG_HELP_CHKBLANK=0;
}
if(__LONG_HELP_WX1==NULL){
__LONG_HELP_WX1=(int32*)mem_static_malloc(4);
*__LONG_HELP_WX1=0;