From 836c9d1d0005c32714c89b3adecbb232472b494a Mon Sep 17 00:00:00 2001 From: jussi Date: Sun, 18 Feb 2024 19:46:50 +0200 Subject: Pointer variable declaration style change. --- include/state.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/state.h') diff --git a/include/state.h b/include/state.h index 9a29720..f38aaf1 100644 --- a/include/state.h +++ b/include/state.h @@ -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(); -- cgit v1.2.3