Minor spelling, grammar, & comment cleanup

This commit is contained in:
Matthew Territo
2017-07-19 23:34:48 -06:00
parent 36e97f1f62
commit 40599081d9
3 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -522,7 +522,7 @@ bool RenderableStars::loadCachedFile(const std::string& file) {
int8_t version = 0;
fileStream.read(reinterpret_cast<char*>(&version), sizeof(int8_t));
if (version != CurrentCacheVersion) {
LINFO("The format of the cached file has changed, deleting old cache");
LINFO("The format of the cached file has changed: deleting old cache");
fileStream.close();
FileSys.deleteFile(file);
return false;
+1 -1
View File
@@ -246,7 +246,7 @@ void RenderEngine::initialize() {
_raycasterManager = std::make_unique<RaycasterManager>();
_nAaSamples = OsEng.windowWrapper().currentNumberOfAaSamples();
LINFO("Seting renderer from string: " << renderingMethod);
LINFO("Setting renderer from string: " << renderingMethod);
setRendererFromString(renderingMethod);
#ifdef GHOUL_USE_DEVIL
-2
View File
@@ -75,8 +75,6 @@ void ScriptEngine::initialize() {
addBaseLibrary();
LDEBUG("Initializing Lua state");
initializeLuaState(_state);
//LDEBUG("Remapping Print functions");
//remapPrintFunction();
}
void ScriptEngine::deinitialize() {}