Changeset 8717 in orxonox.OLD for trunk/src/lib/util
- Timestamp:
- Jun 22, 2006, 2:04:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/loading/game_loader.cc
r7868 r8717 73 73 this->subscribeEvent(ES_GAME, KeyMapper::PEV_NEXT_WORLD); 74 74 this->subscribeEvent(ES_GAME, KeyMapper::PEV_PREVIOUS_WORLD); 75 76 return ErrorMessage(); 75 77 } 76 78 … … 91 93 this->currentCampaign = this->fileToCampaign(campaignName); 92 94 } 95 96 return ErrorMessage(); 93 97 } 94 98 … … 109 113 this->currentCampaign = this->fileToCampaign(campaignName); 110 114 } 115 116 return ErrorMessage(); 111 117 } 112 118 … … 147 153 } 148 154 } 155 156 return ErrorMessage(); 149 157 } 150 158 … … 160 168 this->currentCampaign->start(); 161 169 } 170 171 return ErrorMessage(); 162 172 } 163 173 … … 191 201 if(this->currentCampaign != NULL) 192 202 this->currentCampaign->pause(); 203 204 return ErrorMessage(); 193 205 } 194 206 … … 205 217 if(this->currentCampaign != NULL) 206 218 this->currentCampaign->resume(); 219 220 return ErrorMessage(); 207 221 } 208 222
Note: See TracChangeset
for help on using the changeset viewer.