mirror of https://github.com/OpenTTD/OpenTTD
(svn r26055) -Codechange: mark switch default as really not triggerable, as technically it's dead code
parent
0eaa8fbfcd
commit
bdd62a4b3e
|
@ -835,7 +835,7 @@ public:
|
||||||
/* jump to end */
|
/* jump to end */
|
||||||
this->list_pos = this->servers.Length() - 1;
|
this->list_pos = this->servers.Length() - 1;
|
||||||
break;
|
break;
|
||||||
default: break;
|
default: NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
this->server = this->servers[this->list_pos];
|
this->server = this->servers[this->list_pos];
|
||||||
|
|
Loading…
Reference in New Issue