use fplay_run to run Fplay with parameter wrapped into '"'

git-svn-id: svn://kolibrios.org@7203 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2018-03-22 14:36:04 +00:00
parent 2ece3b26d7
commit 444e038420
8 changed files with 30 additions and 29 deletions

View File

@@ -513,13 +513,13 @@ inline fastcall void PutPixel( EBX,ECX,EDX)
$int 0x40
}
void DefineButton(dword x,y,w,h,EDX,ESI)
:void DefineButton(dword x,y,w,h,id,color)
{
EAX = 8;
$push edx
EDX += BT_DEL;
EDX = id + BT_DEL;
$int 0x40;
$pop edx
EDX = id;
ESI = color;
EBX = x<<16+w;
ECX = y<<16+h;
$int 0x40