mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Add argument to subsurface_console_init call
Subsurface-mobile doesn't work on Windows, so we can just hardcode this to false. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
855995191c
commit
ca6a241a97
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ int main(int argc, char **argv)
|
|||
|
||||
bool dedicated_console = arguments.length() > 1 &&
|
||||
(arguments.at(1) == QString("--win32console"));
|
||||
subsurface_console_init(dedicated_console);
|
||||
subsurface_console_init(dedicated_console, false);
|
||||
|
||||
for (i = 1; i < arguments.length(); i++) {
|
||||
QString a = arguments.at(i);
|
||||
|
|
Loading…
Reference in a new issue