aboutsummaryrefslogtreecommitdiff
path: root/examples/textures_formats_loading.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2015-10-26 12:14:26 +0100
committerraysan5 <raysan5@gmail.com>2015-10-26 12:14:26 +0100
commitb135bcd42225d470b5a622e038e63124cb318129 (patch)
tree961bb1baf422380e5377cab38bbc769529e39551 /examples/textures_formats_loading.c
parentfb4105cf8a6a26b0f00da1c71ad8c56c2aefd875 (diff)
downloadraylib-b135bcd42225d470b5a622e038e63124cb318129.tar.gz
raylib-b135bcd42225d470b5a622e038e63124cb318129.zip
Corrected minor bugs
Diffstat (limited to 'examples/textures_formats_loading.c')
-rw-r--r--examples/textures_formats_loading.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/textures_formats_loading.c b/examples/textures_formats_loading.c
index a758fe27..f416ce38 100644
--- a/examples/textures_formats_loading.c
+++ b/examples/textures_formats_loading.c
@@ -76,7 +76,7 @@ int main()
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
- int screenHeight = 480;
+ int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture formats loading");
@@ -128,8 +128,8 @@ int main()
for (int i = 0; i < NUM_TEXTURES; i++)
{
- if (i < NUM_TEXTURES/2) selectRecs[i] = (Rectangle){ 40, 45 + 32*i, 150, 30 };
- else selectRecs[i] = (Rectangle){ 40 + 152, 45 + 32*(i - NUM_TEXTURES/2), 150, 30 };
+ if (i < NUM_TEXTURES/2) selectRecs[i] = (Rectangle){ 40, 30 + 32*i, 150, 30 };
+ else selectRecs[i] = (Rectangle){ 40 + 152, 30 + 32*(i - NUM_TEXTURES/2), 150, 30 };
}
// Texture sizes in KB
@@ -215,7 +215,7 @@ int main()
// Draw selected texture
if (sonic[selectedFormat].id != 0)
{
- DrawTexture(sonic[selectedFormat], 350, 0, WHITE);
+ DrawTexture(sonic[selectedFormat], 350, -10, WHITE);
}
else
{
@@ -225,9 +225,9 @@ int main()
DrawText("ON YOUR GPU", 520, 240, 20, MAROON);
}
- DrawText("Select texture format (use cursor keys):", 40, 26, 10, DARKGRAY);
- DrawText("Required GPU memory size (VRAM):", 40, 442, 10, DARKGRAY);
- DrawText(FormatText("%4.0f KB", textureSizes[selectedFormat]), 240, 435, 20, DARKBLUE);
+ DrawText("Select texture format (use cursor keys):", 40, 10, 10, DARKGRAY);
+ DrawText("Required GPU memory size (VRAM):", 40, 427, 10, DARKGRAY);
+ DrawText(FormatText("%4.0f KB", textureSizes[selectedFormat]), 240, 420, 20, DARKBLUE);
EndDrawing();
//----------------------------------------------------------------------------------