summary refs log tree commit diff
path: root/src/Support.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-21 18:11:55 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-21 21:31:11 +0700
commit325dca9f212f9fd44cd10a8180529970c7a08c72 (patch)
treee1cfaec078dfa49f4d51d05eef8a5b0967843a41 /src/Support.h
parent10f5376de856ecead4e8bbf66f19157f36f7a382 (diff)
downloadblackshades-1.2.0.tar.gz
Remove trailing whitespaces and duplicated blank lines 1.2.0
Diffstat (limited to 'src/Support.h')
-rw-r--r--src/Support.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Support.h b/src/Support.h
index 49b83fc..99e264e 100644
--- a/src/Support.h
+++ b/src/Support.h
@@ -41,20 +41,19 @@ void GetMouseRel(Point *p);
 void GetKeys(unsigned long *keys);
 int Button(void);
 #ifdef NOOGG
-void alutLoadWAVFile_CFH(char *filename, ALenum *format, void **wave, 
+void alutLoadWAVFile_CFH(char *filename, ALenum *format, void **wave,
 	unsigned int *size, ALsizei *freq);
-void alutUnloadWAV_CFH(ALenum format, void *wave, unsigned int size, 
+void alutUnloadWAV_CFH(ALenum format, void *wave, unsigned int size,
 	ALsizei freq);
 #define alutLoadWAVFile alutLoadWAVFile_CFH
-#define alutUnloadWAV alutUnloadWAV_CFH 
+#define alutUnloadWAV alutUnloadWAV_CFH
 #else
-void LoadOGG_CFH(char *filename, ALenum *format, void **wave, 
+void LoadOGG_CFH(char *filename, ALenum *format, void **wave,
 	unsigned int *size, ALsizei *freq);
-void FreeOGG(ALenum format, void *wave, unsigned int size, 
+void FreeOGG(ALenum format, void *wave, unsigned int size,
 	ALsizei freq);
 #endif
 
-
 FILE *cfh_fopen(const char *filename, const char *mode);
 
 #endif