~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/tron/gMenus.cpp

  • Committer: wrtlprnft
  • Date: 2008-03-24 08:28:20 UTC
  • mfrom: (563.1.226)
  • Revision ID: wrtlprnft@users.sf.net-20080324082820-235q3jssjh059s53
Merged changes from the 0.2.8 branch.
The pighack help text got replaced by the new help menu.
To emulate the old behavior use:
REMOVE_HELP_TOPIC commands
HELP_INTRODUCTORY_BLURB <your help text>

Show diffs side-by-side

added added

removed removed

Lines of Context:
652
652
 
653
653
            con << tColoredString::ColorString(.5,.5,1) << " > " << *content << '\n';
654
654
 
655
 
            if ( tRecorder::IsPlayingBack() )
656
 
            {
657
 
                // the command was also recorded; better play it back,
658
 
                // or the playback gets out of sync
659
 
                tConfItemBase::LoadPlayback( false );
660
 
            }
661
 
            else
662
 
            {
663
 
                // pass the console command to the configuration system
664
 
                std::stringstream s(&((*content)[0]));
665
 
                tConfItemBase::LoadAll(s);
666
 
            }
 
655
            // pass the console command to the configuration system
 
656
            std::stringstream s(&((*content)[0]));
 
657
            tConfItemBase::LoadAll( s, false );
667
658
 
668
659
            MyMenu()->Exit();
669
660
            return true;