Pointer variable declaration style change.
This commit is contained in:
@@ -5,17 +5,17 @@
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
char *exePath;
|
||||
char* exePath;
|
||||
bool hasWindow;
|
||||
bool run;
|
||||
bool gcUnload;
|
||||
lua_State *luaState;
|
||||
lua_State* luaState;
|
||||
Vector2 resolution;
|
||||
int logLevelInvalid;
|
||||
Font defaultFont;
|
||||
Material defaultMaterial;
|
||||
Texture defaultTexture;
|
||||
int *RLGLcurrentShaderLocs;
|
||||
int* RLGLcurrentShaderLocs;
|
||||
/* Events. */
|
||||
#ifdef PLATFORM_DESKTOP
|
||||
/* Window events. */
|
||||
@@ -38,12 +38,12 @@ typedef struct {
|
||||
GLFWpentabletproximityfun glfwtabletProximityCallback;
|
||||
#elif PLATFORM_DESKTOP_SDL
|
||||
int SDL_eventQueueLen;
|
||||
SDL_Event *SDL_eventQueue;
|
||||
SDL_Event* SDL_eventQueue;
|
||||
#endif
|
||||
} State;
|
||||
|
||||
extern State *state;
|
||||
|
||||
bool stateInit( int argn, const char **argc, const char *exePath );
|
||||
void stateInitInterpret( int argn, const char **argc );
|
||||
bool stateInit( int argn, const char** argc, const char* exePath );
|
||||
void stateInitInterpret( int argn, const char** argc );
|
||||
void stateFree();
|
||||
|
||||
Reference in New Issue
Block a user