mirror of
				https://github.com/raysan5/raylib.git
				synced 2025-10-26 12:27:01 +00:00 
			
		
		
		
	Fixed segmentation fult created by quick fix
This commit is contained in:
		| @@ -430,6 +430,7 @@ Font LoadFontFromImage(Image image, Color key, int firstChar) | ||||
|         spriteFont.chars[i].offsetX = 0; | ||||
|         spriteFont.chars[i].offsetY = 0; | ||||
|         spriteFont.chars[i].advanceX = 0; | ||||
|         spriteFont.chars[i].data = NULL; | ||||
|     } | ||||
|  | ||||
|     spriteFont.baseSize = (int)spriteFont.chars[0].rec.height; | ||||
| @@ -686,6 +687,7 @@ void UnloadFont(Font font) | ||||
|     { | ||||
|         for (int i = 0; i < font.charsCount; i++) | ||||
|         { | ||||
|             if(font.chars[i].data != NULL) | ||||
|                 free(font.chars[i].data); | ||||
|         } | ||||
|         UnloadTexture(font.texture); | ||||
| @@ -1442,6 +1444,7 @@ static Font LoadBMFont(const char *fileName) | ||||
|         font.chars[i].offsetX = charOffsetX; | ||||
|         font.chars[i].offsetY = charOffsetY; | ||||
|         font.chars[i].advanceX = charAdvanceX; | ||||
|         font.chars[i].data = NULL; | ||||
|     } | ||||
|  | ||||
|     fclose(fntFile); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Skabunkel
					Skabunkel