Skip to content

Commit

Permalink
Corrected Url for paris image in tutorial (was pointing to a permanen…
Browse files Browse the repository at this point in the history
…t redirect).
  • Loading branch information
sansumbrella committed Jun 28, 2011
1 parent 1c84a7c commit 256e9e3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tour/Section 1/Chapter 1/src/TutorialApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void TutorialApp::prepareSettings( Settings *settings )

void TutorialApp::setup()
{
Url url( "http://www.libcinder.org/media/tutorial/paris.jpg" );
Url url( "http://libcinder.org/media/tutorial/paris.jpg" );
mImage = gl::Texture( loadImage( loadUrl( url ) ) );

mParticleController.addParticles( 250 );
Expand Down
2 changes: 1 addition & 1 deletion tour/Section 1/Chapter 2/src/TutorialApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void TutorialApp::prepareSettings( Settings *settings )

void TutorialApp::setup()
{
Url url( "http://www.libcinder.org/media/tutorial/paris.jpg" );
Url url( "http://libcinder.org/media/tutorial/paris.jpg" );
mChannel = Channel32f( loadImage( loadUrl( url ) ) );
mTexture = mChannel;

Expand Down
2 changes: 1 addition & 1 deletion tour/Section 1/Chapter 3/src/TutorialApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void TutorialApp::keyDown( KeyEvent event )

void TutorialApp::setup()
{
Url url( "http://www.libcinder.org/media/tutorial/paris.jpg" );
Url url( "http://libcinder.org/media/tutorial/paris.jpg" );
mChannel = Channel32f( loadImage( loadUrl( url ) ) );
mTexture = mChannel;

Expand Down
2 changes: 1 addition & 1 deletion tour/Section 1/Chapter 4/src/TutorialApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void TutorialApp::setup()
{
mPerlin = Perlin();

Url url( "http://www.libcinder.org/media/tutorial/paris.jpg" );
Url url( "http://libcinder.org/media/tutorial/paris.jpg" );
mChannel = Channel32f( loadImage( loadUrl( url ) ) );
mTexture = mChannel;

Expand Down
2 changes: 1 addition & 1 deletion tour/Section 1/Chapter 5/src/TutorialApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void TutorialApp::setup()
{
mPerlin = Perlin();

Url url( "http://www.libcinder.org/media/tutorial/paris.jpg" );
Url url( "http://libcinder.org/media/tutorial/paris.jpg" );
mChannel = Channel32f( loadImage( loadUrl( url ) ) );
mTexture = mChannel;

Expand Down

0 comments on commit 256e9e3

Please sign in to comment.