consistentify newlines

This commit is contained in:
zeromus 2008-06-19 02:41:47 +00:00
parent 0a05a707a0
commit 0eef479304
3 changed files with 8 additions and 8 deletions

View File

@ -15,4 +15,4 @@ struct FCEU_Guid : public ValueArray<uint8,16>
}; };
#endif #endif

View File

@ -17,5 +17,5 @@ struct ValueArray
} }
}; };
#endif #endif

View File

@ -478,12 +478,12 @@ unsigned int uintDecFromIstream(std::istream* is)
is->unget(); is->unget();
return ret; return ret;
} }
std::string stditoa(int n) std::string stditoa(int n)
{ {
char tempbuf[16]; char tempbuf[16];
sprintf(tempbuf, "%d", n); sprintf(tempbuf, "%d", n);
return tempbuf; return tempbuf;
} }