diff options
author | 2021-08-23 16:45:30 +1000 | |
---|---|---|
committer | 2021-08-23 16:45:30 +1000 | |
commit | 13eb7bb7d8dbac11c4ecc93194c6e04969657fd0 (patch) | |
tree | 9f6a696a00f1c008d50fd0b57041565fe9f53450 | |
parent | 9712a2144b6de818fe4369117e8ea627c45ea201 (diff) |
Fix a duplicate #include and an indendation error
-rw-r--r-- | src/devices/sound/ks0164.cpp | 2 | ||||
-rw-r--r-- | src/lib/netlist/plib/pfunction.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/sound/ks0164.cpp b/src/devices/sound/ks0164.cpp index 8fdcbf026ba..3431c49c0f7 100644 --- a/src/devices/sound/ks0164.cpp +++ b/src/devices/sound/ks0164.cpp @@ -421,7 +421,7 @@ u16 ks0164_device::uncomp_8_16(u8 value) s16 o = (0x10 | (value & 0xf)) << 10; o = o >> xp; if(value & 0x10) - o = -o; + o = -o; return o; } diff --git a/src/lib/netlist/plib/pfunction.cpp b/src/lib/netlist/plib/pfunction.cpp index f6b17941e0c..362615468e5 100644 --- a/src/lib/netlist/plib/pfunction.cpp +++ b/src/lib/netlist/plib/pfunction.cpp @@ -11,7 +11,6 @@ #include <array> #include <map> -#include <map> #include <stack> #include <type_traits> #include <utility> |