see changelog

This commit is contained in:
Eddie Runia
1999-07-20 18:24:05 +00:00
parent 33ae93b298
commit e67cc4e035
2 changed files with 4 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
19990720-20:10 CET Eddie Runia <eddie@runia.com>
* source/vm/hvm.c
wsize =*( (WORD *) ... part removed.
19990720-13:40 EDT Paul Tucker <ptucker@sympatico.ca>
* source/rtl/gtapi.c
* If a color string of ("r/b,b/r" ) is used, the

View File

@@ -559,11 +559,6 @@ void VirtualMachine( PBYTE pCode, PSYMBOL pSymbols )
break;
case HB_P_PUSHSTR:
#ifdef __MPW__
wSize = pCode[ w + 1 ] + ( pCode[ w + 2 ] * 256 );
#else
wSize =*( (WORD *) &( pCode[ w + 1 ] ) );
#endif
wSize = pCode[ w + 1 ] + ( pCode[ w + 2 ] * 256 );
PushString( (char*)pCode + w + 3, wSize );
w += ( wSize + 3 );