Explorar o código

pluralize error message in MemoryManager.hx

ibloat %!s(int64=9) %!d(string=hai) anos
pai
achega
b53d1a80c4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)";
 			}
 		}