summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2015-06-22 05:35:34 +1000
committer therealmogminer@gmail.com <therealmogminer@gmail.com>2015-06-23 21:02:32 +0200
commit84c0eebb3e1d4b9c1787efd1472428d3f7bc31fa (patch)
treee899e49a9243197a7c479388a6c159588eb028ac
parent32300be45d9bee18e0e474cef372765b7f2a6f60 (diff)
Can't spell (nw)
-rw-r--r--src/emu/video/rgbvmx.c2
-rw-r--r--src/emu/video/rgbvmx.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/rgbvmx.c b/src/emu/video/rgbvmx.c
index f8ef0f09cb8..3c9af91adfe 100644
--- a/src/emu/video/rgbvmx.c
+++ b/src/emu/video/rgbvmx.c
@@ -23,7 +23,7 @@ const rgbaint_t::VECU32 rgbaint_t::alpha_mask = { 0x00000000, 0xffffffff, 0xffff
const rgbaint_t::VECU32 rgbaint_t::red_mask = { 0xffffffff, 0x00000000, 0xffffffff, 0xffffffff };
const rgbaint_t::VECU32 rgbaint_t::green_mask = { 0xffffffff, 0xffffffff, 0x00000000, 0xffffffff };
const rgbaint_t::VECU32 rgbaint_t::blue_mask = { 0xffffffff, 0xffffffff, 0xffffffff, 0x00000000 };
-const rgbaint_t::VECU8 rgbaint_t::merge_aplha_perm = { 16, 17, 18, 19, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
+const rgbaint_t::VECU8 rgbaint_t::merge_alpha_perm = { 16, 17, 18, 19, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
const rgbaint_t::VECU16 rgbaint_t::scale_table[256] = {
{ 0, 256, 0, 256, 0, 256, 0, 256 }, { 1, 255, 1, 255, 1, 255, 1, 255 },
{ 2, 254, 2, 254, 2, 254, 2, 254 }, { 3, 253, 3, 253, 3, 253, 3, 253 },
diff --git a/src/emu/video/rgbvmx.h b/src/emu/video/rgbvmx.h
index 9c2b6ce35a1..9e87997d868 100644
--- a/src/emu/video/rgbvmx.h
+++ b/src/emu/video/rgbvmx.h
@@ -471,7 +471,7 @@ protected:
static const VECU32 red_mask;
static const VECU32 green_mask;
static const VECU32 blue_mask;
- static const VECU8 merge_aplha_perm;
+ static const VECU8 merge_alpha_perm;
static const VECU16 scale_table[256];
};