Revert "Some fixes for compiling with Visual Studio - void* and inline"
This reverts commit ea619f5542
.
This commit is contained in:
parent
ea619f5542
commit
a27074fc47
@ -888,7 +888,7 @@ inline int drawchar(pixel *vid, int x, int y, int c, int r, int g, int b, int a)
|
||||
}
|
||||
|
||||
#if defined(WIN32) && !defined(__GNUC__)
|
||||
int addchar(pixel *vid, int x, int y, int c, int r, int g, int b, int a)
|
||||
_inline int addchar(pixel *vid, int x, int y, int c, int r, int g, int b, int a)
|
||||
#else
|
||||
inline int addchar(pixel *vid, int x, int y, int c, int r, int g, int b, int a)
|
||||
#endif
|
||||
|
@ -1168,9 +1168,9 @@ int luatpt_set_property(lua_State* l)
|
||||
}
|
||||
i = r>>8;
|
||||
if(format==2){
|
||||
*((float*)(((char*)&parts[i])+offset)) = f;
|
||||
*((float*)(((void*)&parts[i])+offset)) = f;
|
||||
} else {
|
||||
*((int*)(((char*)&parts[i])+offset)) = t;
|
||||
*((int*)(((void*)&parts[i])+offset)) = t;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@ -1192,9 +1192,9 @@ int luatpt_set_property(lua_State* l)
|
||||
if (partsel && partsel != parts[i].type)
|
||||
return 0;
|
||||
if(format==2){
|
||||
*((float*)(((char*)&parts[i])+offset)) = f;
|
||||
*((float*)(((void*)&parts[i])+offset)) = f;
|
||||
} else {
|
||||
*((int*)(((char*)&parts[i])+offset)) = t;
|
||||
*((int*)(((void*)&parts[i])+offset)) = t;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user