diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-12-10 18:33:40 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-12-10 18:33:40 -0500 |
commit | b6141f6cbf07f0fbfadc892488f2ba83b7cf1719 (patch) | |
tree | d48e05a6ab29409350637b67aa9777f09af9709a /src/ui.cpp | |
parent | e472a62b750e57724a26d299bb682b4f39405d05 (diff) |
doc updates
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -200,7 +200,7 @@ namespace ui { UserError("Couldn't initialize freetype."); #ifdef DEBUG - DEBUG_printf("Initialized FreeType2.\n",NULL); + DEBUG_printf("Initialized FreeType2.\n", nullptr); #endif // DEBUG fontSize = 0; @@ -562,7 +562,7 @@ namespace ui { // cycle through options while (sopt) { dialogOptText.push_back(std::make_pair((std::string)sopt, vec3 {0,0,0})); - sopt = strtok(NULL,":"); + sopt = strtok(nullptr, ":"); } } @@ -1037,7 +1037,7 @@ namespace ui { void quitGame() { dialogBoxExists = false; - currentMenu = NULL; + currentMenu = nullptr; game::config::update(); game::config::save(); game::endGame(); @@ -1183,7 +1183,7 @@ EXIT: bgr[x+2] = pixels[x]; } - time_t epoch = time(NULL); + time_t epoch = time(nullptr); struct tm* timen = localtime(&epoch); std::string name = "screenshots/"; |