Преглед изворни кода

fix: check if ctrl modifier is among the currently set modifiers (#3230)

pull/3233/head
mohad12211 пре 1 година
committed by GitHub
родитељ
комит
db55bed72b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c Прегледај датотеку

@ -5609,7 +5609,7 @@ static void KeyCallback(GLFWwindow *window, int key, int scancode, int action, i
if ((key == GLFW_KEY_F12) && (action == GLFW_PRESS))
{
#if defined(SUPPORT_GIF_RECORDING)
if (mods == GLFW_MOD_CONTROL)
if (mods & GLFW_MOD_CONTROL)
{
if (gifRecording)
{

Loading…
Откажи
Сачувај