1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00

Correct further namespace references.

This commit is contained in:
Thomas Harte 2021-03-17 22:56:03 -04:00
parent 3d1775d853
commit 9bec91c2b9
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
#include "Keyboard.hpp"
using namespace ZX8081;
using namespace Sinclair::ZX8081;
uint16_t KeyboardMapper::mapped_key_for_key(Inputs::Keyboard::Key key) const {
#define BIND(source, dest) case Inputs::Keyboard::Key::source: return ZX8081::dest

View File

@ -10,7 +10,7 @@
#include <algorithm>
using namespace ZX8081;
using namespace Sinclair::ZX8081;
namespace {