fixed this

This commit is contained in:
David Anderson
2006-06-11 21:50:19 +00:00
parent 84ec8ef007
commit 2e86f51cfe
3 changed files with 9 additions and 9 deletions

View File

@@ -82,4 +82,10 @@ void EnableDebugHandler(AMX *amx, Debugger *pd);
bool DirExists(const char *dir);
const char* GetFileName(AMX *amx);
inline cell FloatToCell(float input)
{
double output = input;
return *(cell *)&output;
}
#endif // __MODULES_H__