mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-21 18:58:14 +00:00
fix various problems, thanks CppCheck :) (#1005)
* explained a bit more the core_window_letterbox example * fixed a few 'ups' moments that could lead to mild head pain and time loss
This commit is contained in:
@@ -1887,6 +1887,13 @@ unsigned int rlLoadTexture(void *data, int width, int height, int format, int mi
|
||||
#endif
|
||||
#endif // GRAPHICS_API_OPENGL_11
|
||||
|
||||
if( data == NULL ){
|
||||
//ups!
|
||||
TraceLog(LOG_WARNING, "Got asked to load texture from a NULL pointer!");
|
||||
|
||||
return id;
|
||||
}
|
||||
|
||||
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
|
||||
|
||||
glGenTextures(1, &id); // Generate texture id
|
||||
|
Reference in New Issue
Block a user