Loading

Paste #pmz1cua17

  1. /* static */ void AI::Stop(CompanyID company)
  2. {
  3.     if (_networking && !_network_server) return;
  4.  
  5.     Backup<CompanyByte> cur_company(_current_company, company, FILE_LINE);

rcon3.diff

  1. Index: src/console_cmds.cpp
  2. ===================================================================
  3. --- src/console_cmds.cpp    (Revision 20473)
  4. +++ src/console_cmds.cpp    (Arbeitskopie)
  5. @@ -18,6 +18,7 @@

Paste #psgacnszl

  1. GRF Spec extension impedance mismatch
  2.  
  3. In no particular order
  4.  
  5. * not many devs familiar with grf spec

Paste #p3c6qc5ys

  1. void ScriptConfig::ResetChangeableSettings()
  2. {
  3.     for (SettingValueList::iterator it = this->settings.begin(); it != this->settings.end();) {
  4.         const ScriptConfigItem *config_item = this->info->GetConfigItem((*it).first);
  5.         assert(config_item != NULL);

Paste #pwzj5uvjx

  1. void ScriptConfig::ResetChangeableSettings()
  2. {
  3.     for (SettingValueList::iterator it = this->settings.begin(); it != this->settings.end();) {
  4.         const ScriptConfigItem *config_item = this->info->GetConfigItem((*it).first);
  5.         assert(config_item != NULL);

Paste #pc2vjstnz

  1. void ScriptConfig::ResetChangeableSettings()
  2. {
  3.     if (this->info == NULL) return;
  4.  
  5.     for (SettingValueList::iterator it = this->settings.begin(); it != this->settings.end();) {

Paste #pa7nscczm

  1. void ScriptConfig::ResetChangeableSettings()
  2. {
  3.     if (this->info == NULL) return;
  4.  
  5.     for (SettingValueList::iterator it = this->settings.begin(); it != this->settings.end(); it++) {

Paste #pungzsg9l

  1. static void CheckIfAircraftNeedsService(Aircraft *v)
  2. {
  3.     bool needs_automatic_servicing = v->NeedsAutomaticServicing();
  4.     bool has_pending_replace = v->HasPendingReplace();
  5.     if (Company::Get(v->owner)->settings.vehicle.servint_aircraft == 0 || (!needs_automatic_servicing &&

Paste #po02ffkpg

  1. ---------------------------
  2. Microsoft Visual C++ Runtime Library
  3. ---------------------------
  4. Debug Assertion Failed!

Paste #pwj2jsxgy

  1. /** Window for displaying the textfile of a AI. */
  2. struct ScriptTextfileWindow : public TextfileWindow {
  3.     CompanyID slot; ///< View the textfile of this CompanyID slot.
  4.  
  5.     ScriptTextfileWindow(TextfileType file_type, CompanyID slot) : TextfileWindow(file_type), slot(slot)

Paste #pauxxybiu

  1.     openttd.exe!Utf8Decode(unsigned int * c, const char * s) Line 452   C++
  2.     [Inline Frame] openttd.exe!Utf8Consume(const char * *) Line 90  C++
  3.     openttd.exe!FormatString(char * buff, const char * str_arg, StringParameters * args, const char * last, unsigned int case_index, bool game_script, bool dry_run) Line 798   C++
  4.     openttd.exe!FormatString(char * buff, const char * str_arg, StringParameters * args, const char * last, unsigned int case_index, bool game_script, bool dry_run) Line 789   C++
  5.     openttd.exe!FormatString(char * buff, const char * str_arg, StringParameters * args, const char * last, unsigned int case_index, bool game_script, bool dry_run) Line 798   C++
  6.     open

Paste #pljc4jtfs

  1.     openttd.exe!Utf8Decode(unsigned int * c, const char * s) Line 452   C++
  2.     [Inline Frame] openttd.exe!Utf8Consume(const char * *) Line 90  C++
  3.     openttd.exe!FormatString(char * buff, const char * str_arg, StringParameters * args, const char * last, unsigned int case_index, bool game_script, bool dry_run) Line 798   C++
  4.     openttd.exe!FormatString(char * buff, const char * str_arg, StringParameters * args, const char * last, unsigned int case_index, bool game_script, bool dry_run) Line 789   C++
  5.     openttd.exe!FormatString(char * buff, const char * str_arg, StringParameters * args, const char * last, unsigned int case_index, bool game_script, bool dry_run) Line 798   C++
  6.     open

Paste #pvo6zjzxv

  1. "We Built This City"
  2.  
  3. Cargos
  4. * sugar
  5. * flour

Safe handle has been clos

  1.         public static void ConnectWithTimeout(this TcpClient tc, string host, int port)
  2.         {
  3.             if (tc == null)
  4.                 throw new ArgumentNullException("tc");
  5.             if (string.IsNullOrEmpty(host))

Paste #pceswwkbb

  1.     /* Check whether the third tile is an aqueduct head, or a water tile
  2.      * with one corner raised with or without a rail track, or a buoy. */
  3.     if (!IsTileType(tile_cur, MP_WATER)) {
  4.         if (IsTileType(tile_cur, MP_TUNNELBRIDGE)) {
  5.             if (GetTunnelBridgeTransportType(tile_cur) != TRANSPORT_WATER) return_cmd_error(STR_ERROR_SITE_UNSUITABLE);