File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -725,11 +725,17 @@ private sub _emitVarIniEnd( byval sym as FBSYMBOL ptr )
725725end sub
726726
727727private sub _emitVarIniI( byval sym as FBSYMBOL ptr, byval value as longint )
728- emitVARINIi( symbGetType( sym ), value )
728+ dim realtype as integer
729+ dim realsubtype as FBSYMBOL ptr
730+ symbGetRealType( sym, realtype, realsubtype )
731+ emitVARINIi( realtype, value )
729732end sub
730733
731734private sub _emitVarIniF( byval sym as FBSYMBOL ptr, byval value as double )
732- emitVARINIf( symbGetType( sym ), value )
735+ dim realtype as integer
736+ dim realsubtype as FBSYMBOL ptr
737+ symbGetRealType( sym, realtype, realsubtype )
738+ emitVARINIf( realtype, value )
733739end sub
734740
735741private sub _emitVarIniOfs _
You can’t perform that action at this time.
0 commit comments