RIP Debian Buster, You Won't Be Missed
This commit is contained in:
parent
c60fb51fae
commit
4aeb2fd95b
19
Jenkinsfile
vendored
19
Jenkinsfile
vendored
@ -31,24 +31,5 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Debian Buster') {
|
||||
agent {
|
||||
docker {
|
||||
image 'debian:buster'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh './scripts/ci/run.sh'
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ if(TARGET media-layer-core)
|
||||
target_link_libraries(media-layer-core media-layer-headers reborn-headers pthread dl)
|
||||
if(NOT MCPI_SERVER_MODE)
|
||||
# Find GLFW
|
||||
find_package(glfw3 3.2 REQUIRED)
|
||||
find_package(glfw3 3.3 REQUIRED)
|
||||
# Find FreeImage
|
||||
find_library(FREEIMAGE_LIBRARY NAMES freeimage libfreeimage.so.3 REQUIRED)
|
||||
# Not Needed In Server Mode
|
||||
|
@ -329,10 +329,9 @@ static void update_glfw_cursor() {
|
||||
|
||||
// Handle Cursor Lock/Unlock
|
||||
if ((new_mode == GLFW_CURSOR_DISABLED && old_mode != GLFW_CURSOR_DISABLED) || (new_mode != GLFW_CURSOR_DISABLED && old_mode == GLFW_CURSOR_DISABLED)) {
|
||||
// Use Raw Mouse Motion (GLFW 3.3+ Only)
|
||||
#ifdef GLFW_RAW_MOUSE_MOTION
|
||||
// Use Raw Mouse Motion
|
||||
glfwSetInputMode(glfw_window, GLFW_RAW_MOUSE_MOTION, new_mode == GLFW_CURSOR_DISABLED ? GLFW_TRUE : GLFW_FALSE);
|
||||
#endif
|
||||
|
||||
// Reset Last Mouse Position
|
||||
ignore_relative_mouse = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user