aboutsummaryrefslogtreecommitdiff
path: root/source/port.h
diff options
context:
space:
mode:
authortwinaphex2017-08-14 08:06:11 +0200
committertwinaphex2017-08-14 08:06:11 +0200
commit78b32e05a8e3c221279ba40c8f19d762420be8a6 (patch)
tree522343d835ca7eec5ebae18c20ec35ac768250be /source/port.h
parent75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3 (diff)
downloadsnesemu-78b32e05a8e3c221279ba40c8f19d762420be8a6.tar.gz
snesemu-78b32e05a8e3c221279ba40c8f19d762420be8a6.tar.bz2
snesemu-78b32e05a8e3c221279ba40c8f19d762420be8a6.zip
C++ comments need to become C
Diffstat (limited to 'source/port.h')
-rw-r--r--source/port.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/port.h b/source/port.h
index dfd08f1..c2a9b7f 100644
--- a/source/port.h
+++ b/source/port.h
@@ -13,8 +13,8 @@
#else
#define PIXEL_FORMAT RGB565
#endif
-// The above is used to disable the 16-bit graphics mode checks sprinkled
-// throughout the code, if the pixel format is always 16-bit.
+/* The above is used to disable the 16-bit graphics mode checks sprinkled
+ * throughout the code, if the pixel format is always 16-bit. */
#include "pixform.h"
@@ -57,8 +57,8 @@ void _splitpath(const char* path, char* drive, char* dir, char* fname, char* ext
#if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__WIN32__) || defined(__alpha__)
#define FAST_LSB_WORD_ACCESS
#elif defined(__MIPSEL__)
-// On little-endian MIPS, a 16-bit word can be read directly from an address
-// only if it's aligned.
+/* On little-endian MIPS, a 16-bit word can be read directly from an address
+ * only if it's aligned. */
#define FAST_ALIGNED_LSB_WORD_ACCESS
#endif