diff options
| author | raysan5 <raysan5@gmail.com> | 2017-04-22 19:04:54 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2017-04-22 19:04:54 +0200 |
| commit | b0f8ea27e3d7417c0f0c9795aa315dac399c97bf (patch) | |
| tree | 854c517f98f4028e45aa57c4341ef80724f83fec /docs/examples/web/textures | |
| parent | 5620e739149ee2a8d3152f11eb444d4e982352ab (diff) | |
| download | raylib-b0f8ea27e3d7417c0f0c9795aa315dac399c97bf.tar.gz raylib-b0f8ea27e3d7417c0f0c9795aa315dac399c97bf.zip | |
Renamed function for lib consistency
LoadSpriteFontTTF() --> LoadSpriteFontEx()
Diffstat (limited to 'docs/examples/web/textures')
| -rw-r--r-- | docs/examples/web/textures/textures_raw_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/web/textures/textures_raw_data.c b/docs/examples/web/textures/textures_raw_data.c index 245af2e3..f06c798b 100644 --- a/docs/examples/web/textures/textures_raw_data.c +++ b/docs/examples/web/textures/textures_raw_data.c @@ -111,7 +111,7 @@ void UpdateDrawFrame(void) ClearBackground(RAYWHITE); - DrawTexture(checked, screenWidth/2 - checked.width/2, screenHeight/2 - checked.height/2, WHITE); + DrawTexture(checked, screenWidth/2 - checked.width/2, screenHeight/2 - checked.height/2, Fade(WHITE, 0.5f)); DrawTexture(fudesumi, 430, -30, WHITE); DrawText("CHECKED TEXTURE ", 84, 100, 30, BROWN); |
