1@echo off
2rem
3rem Runs Wesnoth with a Windows console attached.
4rem
5rem Usage:
6rem   cwesnoth <command line>
7rem
8
9setlocal
10
11rem Disable stdout.txt/stderr.txt redirection in SDLmain.
12set SDL_STDIO_REDIRECT=0
13
14wesnoth --wconsole %*
15
16endlocal
17