g13d: Remove a bunch of unused vars and definitions

This commit is contained in:
June Tate-Gans 2021-04-25 14:38:41 -05:00
parent 8e14f1f853
commit 9bf95336cc
3 changed files with 0 additions and 4 deletions

View File

@ -378,7 +378,6 @@ void G13_FontChar::set_character(unsigned char *data, int width,
for (int x = 0; x < width; x++) {
unsigned char x_mask = 1 << x;
for (int y = 0; y < 8; y++) {
unsigned char y_mask = 1 << y;
if (data[y] & x_mask) {
dest[x] |= 1 << y;
}

View File

@ -189,8 +189,6 @@ std::string G13_Manager::find_g13_key_name(G13_KEY_INDEX v) const {
}
void G13_Manager::display_keys() {
typedef std::map<std::string, int> mapType;
G13_OUT("Known keys on G13:");
G13_OUT(Helper::map_keys_out(g13_name_to_key));

View File

@ -19,7 +19,6 @@
*/
#include "g13.h"
#include "logo.h"
using namespace std;