fixed floattocell bug, omg

This commit is contained in:
David Anderson 2006-06-12 17:37:09 +00:00
parent bb609123fb
commit 06fbff7042

View File

@ -84,7 +84,7 @@ const char* GetFileName(AMX *amx);
inline cell FloatToCell(float input)
{
double output = input;
REAL output = input;
return *(cell *)&output;
}