Commit 060efcf5 authored by Daniel Friesel's avatar Daniel Friesel
Browse files

outputstream: base is an 8-bit value

parent e6c334fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ OutputStream & OutputStream::operator<<(float number)

OutputStream & OutputStream::operator<<(void *pointer)
{
	unsigned short temp_base = base;
	unsigned char temp_base = base;
	*this << hex << (long)pointer;
	switch (temp_base) {
	case 2: