Searched defs:SDL_max (Results 1 – 2 of 2) sorted by relevance
591 accel.x = SDL_min(SDL_max(accel.x, -maxgforce), maxgforce); category592 accel.y = SDL_min(SDL_max(accel.y, -maxgforce), maxgforce); category593 accel.z = SDL_min(SDL_max(accel.z, -maxgforce), maxgforce); category
408 #define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) macro
Completed in 5 milliseconds