summaryrefslogtreecommitdiffstatshomepage
path: root/src/build
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/build
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
Diffstat (limited to 'src/build')
-rw-r--r--src/build/flags_gcc.mak2
-rw-r--r--src/build/png2bdc.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/build/flags_gcc.mak b/src/build/flags_gcc.mak
index bfe6ca6e122..12fceb32135 100644
--- a/src/build/flags_gcc.mak
+++ b/src/build/flags_gcc.mak
@@ -8,7 +8,7 @@ endif
ifeq ($(findstring 4.8.,$(TEST_GCC)),4.8.)
CCOMFLAGS += -Wno-narrowing -Wno-attributes -Wno-unused-local-typedefs
# array bounds checking seems to be buggy in 4.8.1 (try it on video/stvvdp1.c and video/model1.c without -Wno-array-bounds)
- CCOMFLAGS += -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow
+ CCOMFLAGS += -Wno-unused-variable -Wno-array-bounds -Wno-strict-overflow
endif
ifeq ($(findstring arm,$(UNAME)),arm)
diff --git a/src/build/png2bdc.c b/src/build/png2bdc.c
index 9eb986a170c..197ded22fcc 100644
--- a/src/build/png2bdc.c
+++ b/src/build/png2bdc.c
@@ -74,7 +74,7 @@ struct render_font_char
INT32 width; // width from this character to the next
INT32 xoffs, yoffs; // X and Y offset from baseline to top,left of bitmap
INT32 bmwidth, bmheight; // width and height of bitmap
- bitmap_argb32 * bitmap; // pointer to the bitmap containing the raw data
+ bitmap_argb32 * bitmap; // pointer to the bitmap containing the raw data
};
@@ -107,7 +107,7 @@ inline int pixel_is_set(bitmap_argb32 &bitmap, int y, int x)
//-------------------------------------------------
// write_data - write data to the given file and
-// throw an exception if an error occurs
+// throw an exception if an error occurs
//-------------------------------------------------
static void write_data(core_file &file, UINT8 *base, UINT8 *end)
@@ -123,7 +123,7 @@ static void write_data(core_file &file, UINT8 *base, UINT8 *end)
//-------------------------------------------------
// render_font_save_cached - write the cached
-// data out to the file
+// data out to the file
//-------------------------------------------------
static bool render_font_save_cached(render_font &font, const char *filename, UINT32 hash)
@@ -248,7 +248,7 @@ static bool render_font_save_cached(render_font &font, const char *filename, UIN
//-------------------------------------------------
// bitmap_to_chars - convert a bitmap to
-// characters in the given font
+// characters in the given font
//-------------------------------------------------
static bool bitmap_to_chars(bitmap_argb32 &bitmap, render_font &font)