diff --git a/Sources/Engine/Base/Shell.h b/Sources/Engine/Base/Shell.h index 09b8ca6..a11571f 100644 --- a/Sources/Engine/Base/Shell.h +++ b/Sources/Engine/Base/Shell.h @@ -24,7 +24,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include +#if 0 #define NEXTARGUMENT(type) ( *((type*&)pArgs)++ ) +#else +#define NEXTARGUMENT(type) ( *((type*)&pArgs) ); pArgs+=sizeof(void*); +#endif // Object that takes care of shell functions, variables, macros etc. class ENGINE_API CShell {