More coding style fixes because I suck at sed

This commit is contained in:
Pierre Bourdon
2011-12-11 11:14:02 +01:00
parent 014c474024
commit df283a56a0
8 changed files with 155 additions and 155 deletions

View File

@ -69,7 +69,7 @@ u16 GetEncodedSampleCount(u32 format)
const char* WriteRegister(API_TYPE ApiType, const char *prefix, const u32 num)
{
if(ApiType == API_GLSL)
return ""; // Once we switch to GLSL 1.3 we can do something here
return ""; // Once we switch to GLSL 1.3 we can do something here
static char result[64];
sprintf(result, " : register(%s%d)", prefix, num);
return result;