diff options
| author | Ray <[email protected]> | 2023-10-14 11:48:20 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-10-14 11:48:20 +0200 |
| commit | 4521a142c35fe9fe1386d79ae783363c9c164827 (patch) | |
| tree | c58436098380b2c9de6a0988d850196701832f13 /src | |
| parent | 005ba155c0b4d8e065e6e3ffe2cdd82bb41bf200 (diff) | |
| download | raylib-4521a142c35fe9fe1386d79ae783363c9c164827.tar.gz raylib-4521a142c35fe9fe1386d79ae783363c9c164827.zip | |
tweaks
Diffstat (limited to 'src')
| -rw-r--r-- | src/rcore.c | 2 | ||||
| -rw-r--r-- | src/rcore_web.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/rcore.c b/src/rcore.c index b3e07f95..d7aaa30b 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -2360,7 +2360,7 @@ int GetTouchPointCount(void) //---------------------------------------------------------------------------------- // NOTE: Functions with a platform-specific implementation on rcore_<platform>.c -//static bool InitGraphicsDevice(int width, int height) +//static bool InitPlatform(void) // Initialize hi-resolution timer void InitTimer(void) diff --git a/src/rcore_web.c b/src/rcore_web.c index c0b7079b..277d1378 100644 --- a/src/rcore_web.c +++ b/src/rcore_web.c @@ -1119,7 +1119,7 @@ static void WindowIconifyCallback(GLFWwindow *window, int iconified) // GLFW3 Window Maximize Callback, runs when window is maximized static void WindowMaximizeCallback(GLFWwindow *window, int maximized) { - + // TODO. } // GLFW3 WindowFocus Callback, runs when window get/lose focus @@ -1157,7 +1157,6 @@ static void WindowDropCallback(GLFWwindow *window, int count, const char **paths } } - // GLFW3 Keyboard Callback, runs on key pressed static void KeyCallback(GLFWwindow *window, int key, int scancode, int action, int mods) { @@ -1340,7 +1339,6 @@ static void CursorEnterCallback(GLFWwindow *window, int enter) else CORE.Input.Mouse.cursorOnScreen = false; } - // Register fullscreen change events static EM_BOOL EmscriptenFullscreenChangeCallback(int eventType, const EmscriptenFullscreenChangeEvent *event, void *userData) { |
