=============== LoadGame_f =============== */
| 1767 | =============== |
| 1768 | */ |
| 1769 | void LoadGame_f( const idCmdArgs &args ) { |
| 1770 | console->Close(); |
| 1771 | if ( args.Argc() < 2 || idStr::Icmp(args.Argv(1), "quick" ) == 0 ) { |
| 1772 | sessLocal.QuickLoad(); |
| 1773 | } else { |
| 1774 | sessLocal.LoadGame( args.Argv(1) ); |
| 1775 | } |
| 1776 | } |
| 1777 | |
| 1778 | /* |
| 1779 | =============== |