Skip to content

Commit

Permalink
Increase version number to 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranmillar committed May 5, 2018
1 parent d752ced commit 8c52bd3
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/lem3edit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ using namespace std;
namespace fs = std::experimental::filesystem::v1;

const char *prog_name = "lem3edit";
const char *prog_ver = "2.0";
const char *prog_date = "17/02/2018";
const char *prog_ver = "2.1";
const char *prog_date = "05/05/2018";

void version(void);

Expand Down Expand Up @@ -76,6 +76,17 @@ int main(int argc, char *argv[])

//SDL_EnableKeyboardRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);

if (!fs::exists("./gfx/"))
{
tinyfd_messageBox(
"Fatal Error!",
"Oh no! Lem3edit could not find the gfx folder. It should be located in the same folder as lem3edit.exe.",
"ok",
"error",
0);
return EXIT_FAILURE;
}

//load ini file
Ini ini;

Expand Down

0 comments on commit 8c52bd3

Please sign in to comment.