Added first version of OS X compilation support

This commit is contained in:
ratalaika
2014-11-22 00:13:09 +01:00
parent 05ccc4fd42
commit ab05ace3ce
14 changed files with 352 additions and 11 deletions

View File

@ -21,7 +21,7 @@ int main()
InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture loading and drawing");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Texture2D texture = LoadTexture("resources/raylib_logo.png"); // Texture loading
Texture2D texture = LoadTexture("./resources/raylib_logo.png"); // Texture loading
//---------------------------------------------------------------------------------------
// Main game loop