mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
PINK: fix no newline warning
This commit is contained in:
parent
37574a3bcf
commit
c06452594f
@ -344,5 +344,3 @@ void Archive::writeString(const Common::String &string) {
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
||||
|
@ -249,4 +249,4 @@ void CelDecoder::CelVideoTrack::setY(int32 y) {
|
||||
_center.y = y;//+ getHeight() / 2;
|
||||
}
|
||||
|
||||
} // End of namepsace Pink
|
||||
} // End of namepsace Pink
|
||||
|
@ -118,4 +118,4 @@ void CursorMgr::startAnimation(int index) {
|
||||
}
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -138,4 +138,4 @@ Actor *Director::getActorByPoint(Common::Point point) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -154,4 +154,4 @@ void ResourceDescription::load(Common::File &file) {
|
||||
inBro = (bool) file.readUint16LE();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -92,4 +92,4 @@ void ActionCEL::unpause() {
|
||||
_decoder->pauseVideo(0);
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -45,4 +45,4 @@ void ActionHide::toConsole() {
|
||||
|
||||
ActionHide::~ActionHide() {}
|
||||
|
||||
} //End of namespace Pink
|
||||
} //End of namespace Pink
|
||||
|
@ -66,4 +66,4 @@ void ActionLoop::onStart() {
|
||||
_actor->endAction();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -115,4 +115,4 @@ void ActionSfx::end() {
|
||||
_sound = nullptr;
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -96,4 +96,4 @@ void ActionSound::unpause() {
|
||||
_sound->resume();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -54,4 +54,4 @@ void ActionStill::onStart() {
|
||||
_actor->endAction();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -72,4 +72,4 @@ void ActionTalk::unpause() {
|
||||
_sound->resume();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -43,4 +43,4 @@ void ActionText::toConsole() {
|
||||
_name.c_str(), _text.c_str(), _bounds[0], _bounds[1], _bounds[2], _bounds[3], _centered, _scrollBar, _textColor, _backgroundColor);
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -41,4 +41,4 @@ void WalkAction::onStart() {
|
||||
_decoder->start();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -99,12 +99,14 @@ void Actor::setAction(Action *newAction) {
|
||||
}
|
||||
|
||||
void Actor::setAction(Action *newAction, bool unk) {
|
||||
if (unk){
|
||||
if (unk) {
|
||||
assert(0); // want to see this
|
||||
_isActionEnded = 1;
|
||||
_action = newAction;
|
||||
}
|
||||
else setAction(newAction);
|
||||
else {
|
||||
setAction(newAction);
|
||||
}
|
||||
}
|
||||
|
||||
Action *Actor::getAction() const {
|
||||
|
@ -39,4 +39,4 @@ void PDAButtonActor::toConsole() {
|
||||
_name.c_str(), _x, _y, _hideOnStop, _opaque, (int) _command);
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -44,6 +44,6 @@ private:
|
||||
Command _command;
|
||||
};
|
||||
|
||||
}
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
|
@ -90,4 +90,4 @@ void SupportingActor::onHover(Common::Point point, const Common::String &itemNam
|
||||
Actor::onHover(point, item, cursorMgr);
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -97,4 +97,3 @@ void ConditionNotInventoryItemOwner::toConsole() {
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
@ -102,5 +102,4 @@ public:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -131,4 +131,4 @@ HandlerMgr::~HandlerMgr() {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
} // End of namespace Pink
|
||||
|
@ -108,4 +108,4 @@ void HandlerTimerSequences::handle(Actor *actor) {
|
||||
assert(sequence);
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -60,5 +60,4 @@ protected:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -201,5 +201,3 @@ InventoryItem *InventoryMgr::getCurrentItem() {
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
||||
|
@ -101,6 +101,3 @@ InventoryMgr *Module::getInventoryMgr() {
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
||||
|
||||
|
@ -43,4 +43,3 @@ void NamedObject::store(Archive &archive) {
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
@ -55,4 +55,4 @@ protected:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -213,5 +213,4 @@ void GamePage::clear() {
|
||||
delete _walkMgr; _walkMgr = nullptr;
|
||||
}
|
||||
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -73,4 +73,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif //SCUMMVM_GAME_PAGE_H
|
||||
#endif
|
||||
|
@ -95,5 +95,4 @@ void Page::unpause() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
} // End of namespace Pink
|
||||
|
@ -58,4 +58,4 @@ protected:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -58,6 +58,4 @@ void SeqTimer::update() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -188,4 +188,4 @@ void SequenceAudio::skipToLastSubSequence() {
|
||||
end();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -90,4 +90,4 @@ void SequenceContext::setNextItemIndex(int index) {
|
||||
_nextItemIndex = index;
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -107,4 +107,4 @@ void SequenceItemDefaultAction::skip(Sequence *sequence) {
|
||||
execute(0, sequence, 1);
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -127,4 +127,4 @@ SequenceActorState *Sequencer::findSequenceActorState(const Common::String &name
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -69,4 +69,4 @@ public:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -128,4 +128,4 @@ void SideEffectRandomPageVariable::toConsole() {
|
||||
debug("\t\tSideEffectRandomPageVariable: _name=%s, _values=%s", _name.c_str(), values.c_str());
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -40,4 +40,4 @@ void WalkLocation::toConsole() {
|
||||
}
|
||||
}
|
||||
|
||||
} // End of namespace Pink;
|
||||
} // End of namespace Pink
|
||||
|
@ -38,4 +38,4 @@ private:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -149,4 +149,4 @@ void WalkMgr::end() {
|
||||
_leadActor->onWalkEnd();
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -157,4 +157,4 @@ void WalkShortestPath::remove(WalkLocation *location) {
|
||||
}
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -57,5 +57,4 @@ private:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -246,4 +246,4 @@ void PinkEngine::setCursor(uint cursorIndex) {
|
||||
cursor->getHotspotX(), cursor->getHotspotY(), cursor->getKeyColor());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -132,4 +132,4 @@ private:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -81,4 +81,4 @@ uint32 Sound::getCurrentSample() {
|
||||
return _mixer->getSoundElapsedTime(_handle) * kSampleRate / 1000;
|
||||
}
|
||||
|
||||
} // End of namespace Pink
|
||||
} // End of namespace Pink
|
||||
|
@ -52,4 +52,4 @@ public:
|
||||
|
||||
} // End of namespace Pink
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user