Rev 40 | Rev 50 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 40 | Rev 44 | ||
|---|---|---|---|
| Line 190... | Line 190... | ||
| 190 | for (ptr = options.engine.program_options.command_sd; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
190 | for (ptr = options.engine.program_options.command_sd; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
| 191 | READ_WIDESTRING (options.engine.program_options.command_go, engine_inifile, L"commands", L"play", L"go"); |
191 | READ_WIDESTRING (options.engine.program_options.command_go, engine_inifile, L"commands", L"play", L"go"); |
| 192 | for (ptr = options.engine.program_options.command_go; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
192 | for (ptr = options.engine.program_options.command_go; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
| 193 | READ_WIDESTRING (options.engine.program_options.command_hint, engine_inifile, L"commands", L"hint", L"hint"); |
193 | READ_WIDESTRING (options.engine.program_options.command_hint, engine_inifile, L"commands", L"hint", L"hint"); |
| 194 | for (ptr = options.engine.program_options.command_hint; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
194 | for (ptr = options.engine.program_options.command_hint; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
| - | 195 | READ_WIDESTRING (options.engine.program_options.command_move, engine_inifile, L"commands", L"move", L"%s"); |
|
| - | 196 | for (ptr = options.engine.program_options.command_move; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
|
| 195 | READ_WIDESTRING (options.engine.program_options.command_force, engine_inifile, L"commands", L"force move", L"force %s"); |
197 | READ_WIDESTRING (options.engine.program_options.command_force, engine_inifile, L"commands", L"force move", L"force %s"); |
| 196 | for (ptr = options.engine.program_options.command_force; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
198 | for (ptr = options.engine.program_options.command_force; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
| 197 | READ_WIDESTRING (options.engine.program_options.command_quit, engine_inifile, L"commands", L"quit", L"quit"); |
199 | READ_WIDESTRING (options.engine.program_options.command_quit, engine_inifile, L"commands", L"quit", L"quit"); |
| 198 | for (ptr = options.engine.program_options.command_quit; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
200 | for (ptr = options.engine.program_options.command_quit; *ptr != 0; ptr++) if (*ptr == L';') *ptr = L'\n'; |
| 199 | 201 | ||