Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6074


Ignore:
Timestamp:
Nov 16, 2009, 10:37:01 AM (14 years ago)
Author:
rgrieder
Message:

Don't say a word..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/sound3/src/orxonox/sound/BaseSound.h

    r6071 r6074  
    5353        virtual void pause();
    5454
    55         bool isPlaying() { return this->state_ = Playing; }
    56         bool isPaused()  { return this->state_ = Paused; }
    57         bool isStopped() { return this->state_ = Stopped; }
     55        bool isPlaying() { return this->state_ == Playing; }
     56        bool isPaused()  { return this->state_ == Paused; }
     57        bool isStopped() { return this->state_ == Stopped; }
    5858
    5959        virtual void setSource(const std::string& source);
Note: See TracChangeset for help on using the changeset viewer.