summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/VertexManagerBase.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2013-04-11 19:55:36 +1200
committerMatthew Parlane <parlane@gmail.com>2013-04-11 19:55:36 +1200
commit0c9d8d34e1307433e27435c7d2f84557fd563752 (patch)
tree70bc214fe520abc14e64d1a78cafffe178ae239c /Source/Core/VideoCommon/Src/VertexManagerBase.cpp
parent7784fa4c67cc8d2545f45694d83805e7e89cd583 (diff)
parent3c87512180decf6b0aae9402a2179c73674ef5d8 (diff)
Merge branch 'master' into wii-network
Conflicts: Source/Core/Core/CMakeLists.txt
Diffstat (limited to 'Source/Core/VideoCommon/Src/VertexManagerBase.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/VertexManagerBase.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/Src/VertexManagerBase.cpp b/Source/Core/VideoCommon/Src/VertexManagerBase.cpp
index 87856b5aeb..3e2e88c55f 100644
--- a/Source/Core/VideoCommon/Src/VertexManagerBase.cpp
+++ b/Source/Core/VideoCommon/Src/VertexManagerBase.cpp
@@ -57,13 +57,13 @@ void VertexManager::PrepareForAdditionalData(int primitive, u32 count, u32 strid
Flush();
if(count > IndexGenerator::GetRemainingIndices())
- ERROR_LOG(VIDEO, "Too less index values. Use 32bit or reset them on flush.");
+ ERROR_LOG(VIDEO, "Too little remaining index values. Use 32-bit or reset them on flush.");
if (count > GetRemainingIndices(primitive))
ERROR_LOG(VIDEO, "VertexManager: Buffer not large enough for all indices! "
- "Increase MAXIBUFFERSIZE or we need primitive breaking afterall.");
+ "Increase MAXIBUFFERSIZE or we need primitive breaking after all.");
if (needed_vertex_bytes > GetRemainingSize())
ERROR_LOG(VIDEO, "VertexManager: Buffer not large enough for all vertices! "
- "Increase MAXVBUFFERSIZE or we need primitive breaking afterall.");
+ "Increase MAXVBUFFERSIZE or we need primitive breaking after all.");
}
}
@@ -190,7 +190,7 @@ void VertexManager::Flush()
PixelShaderManager::SetTexDims(i, tentry->nativeW, tentry->nativeH, 0, 0);
}
else
- ERROR_LOG(VIDEO, "error loading texture");
+ ERROR_LOG(VIDEO, "Error loading texture");
}
}