diff options
| author | ShadowNinja <shadowninja@minetest.net> | 2015-03-27 20:24:04 -0400 |
|---|---|---|
| committer | ShadowNinja <shadowninja@minetest.net> | 2015-03-27 20:24:04 -0400 |
| commit | 30075467b84c79ff21736d6c447746caef07dcd0 (patch) | |
| tree | cfdfe0ed15d488840e03597bca6c2320a8dec55e /src/game.h | |
| parent | 3d53c90d4b34563ef27bc38da211dab91b72d321 (diff) | |
| download | minetest-30075467b84c79ff21736d6c447746caef07dcd0.tar.xz | |
Change error_message from wstring to string
This removes a lot of narrow/wide conversions where a wide string was never used.
Diffstat (limited to 'src/game.h')
| -rw-r--r-- | src/game.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h index 61f780bee..358b26c37 100644 --- a/src/game.h +++ b/src/game.h @@ -145,7 +145,7 @@ void the_game(bool *kill, const std::string &password, const std::string &address, // If "", local server is used u16 port, - std::wstring &error_message, + std::string &error_message, ChatBackend &chat_backend, const SubgameSpec &gamespec, // Used for local game bool simple_singleplayer_mode); |
