Browse Source

pluralize error message in MemoryManager.hx

ibloat 9 years ago
parent
commit
b53d1a80c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      h3d/impl/MemoryManager.hx

+ 1 - 1
h3d/impl/MemoryManager.hx

@@ -90,7 +90,7 @@ class MemoryManager {
 			cleanManagedBuffers();
 			if( usedMemory - freeMemorySize() == size ) {
 				if( bufferCount >= MAX_BUFFERS )
-					throw "Too many buffer";
+					throw "Too many buffers";
 				throw "Memory full ("+(size>>10)+" KB,"+bufferCount+" buffers)";
 			}
 		}