diff options
| author | Crystalwarrior <varsash@gmail.com> | 2020-03-12 19:20:26 +0300 |
|---|---|---|
| committer | Crystalwarrior <varsash@gmail.com> | 2020-03-12 19:20:26 +0300 |
| commit | 71967d44fd4a7d8955524045d174847e985c7a15 (patch) | |
| tree | 3cddf5344752361b2cdbf5091c715f0170a10309 /src/aoapplication.cpp | |
| parent | 4c8bf57268c09c298edc3f3695e4a2ede84643ac (diff) | |
Keep verison string as-is and only update the actual VERSION display as for some weird ass reason doing it this way won't let you join KFO server
Diffstat (limited to 'src/aoapplication.cpp')
| -rw-r--r-- | src/aoapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aoapplication.cpp b/src/aoapplication.cpp index 9c3d1cd0..6213acd6 100644 --- a/src/aoapplication.cpp +++ b/src/aoapplication.cpp @@ -93,7 +93,7 @@ void AOApplication::destruct_courtroom() QString AOApplication::get_version_string() { - return "KFO" + + return QString::number(RELEASE) + "." + QString::number(MAJOR_VERSION) + "." + QString::number(MINOR_VERSION); |
