Adding the SFML to the CMake libraries

This commit is contained in:
AnonymusRaccoon
2020-01-31 10:52:55 +01:00
parent a1c055920c
commit 15fb1c2cf1
4 changed files with 18 additions and 10 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
#include "Cartridge.hpp"
#include "../Exceptions/InvalidAddress.hpp"
#include "../Exceptions/InvalidRom.hpp"
#include "../Exceptions/InvalidAcction.hpp"
#include "../Exceptions/InvalidAction.hpp"
namespace ComSquare::Cartridge
{
@@ -56,7 +56,7 @@ namespace ComSquare::Cartridge
{
(void)addr;
(void)data;
throw InvalidAcction("Witting to the ROM is not allowed.");
throw InvalidAction("Witting to the ROM is not allowed.");
}
uint32_t Cartridge::_getHeaderAddress()