mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-24 19:23:53 +00:00
17 lines
240 B
Batchfile
17 lines
240 B
Batchfile
@echo off
|
|
rem
|
|
rem Runs Wesnoth with a Windows console attached.
|
|
rem
|
|
rem Usage:
|
|
rem cwesnoth <command line>
|
|
rem
|
|
|
|
setlocal
|
|
|
|
rem Disable stdout.txt/stderr.txt redirection in SDLmain.
|
|
set SDL_STDIO_REDIRECT=0
|
|
|
|
wesnoth --wconsole %*
|
|
|
|
endlocal
|