Commit 78784040 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #8249 from vskarlsruhe:patch-1

parents 2570a5af 56cedfc4
......@@ -27,7 +27,7 @@ int main( void )
std::cin>>input;
// We use the alpha provided by the user if it is between 0 and 1
if( alpha >= 0 && alpha <= 1 )
if( input >= 0 && input <= 1 )
{ alpha = input; }
//![load]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment